blob: 7540c9150a782043c710980dfbbaf908bed18f36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
.aspect-ratio-4x3 {
aspect-ratio: 4/3;
}
.mx-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-3 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.mt-1 {
margin-top: .375rem !important;
}
.mt-4 {
margin-top: 2.25rem !important;
}
.mt-5 {
margin-top: 4.5rem !important;
}
.me-2 {
margin-right: .75rem !important;
}
.me-3 {
margin-right: 1.5rem !important;
}
.mb-0 {
margin-bottom: 0 !important;
}
.mb-1 {
margin-bottom: .375rem !important;
}
.mb-2 {
margin-bottom: .75rem !important;
}
.mb-3 {
margin-bottom: 1.5rem !important;
}
.mb-4 {
margin-bottom: 2.25rem !important;
}
.mb-5 {
margin-bottom: 4.5rem !important;
}
.ms-2 {
margin-left: .75rem !important;
}
.p-0 {
padding: 0 !important;
}
.p-4 {
padding: 2.25rem !important;
}
.px-3 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.py-2 {
padding-top: .75rem !important;
padding-bottom: .75rem !important;
}
.py-3 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-4 {
padding-top: 2.25rem !important;
padding-bottom: 2.25rem !important;
}
.py-5 {
padding-top: 4.5rem !important;
padding-bottom: 4.5rem !important;
}
.pt-5 {
padding-top: 4.5rem !important;
}
@media (min-width: 576px) {
.p-sm-5 {
padding: 4.5rem !important;
}
}
@media (min-width: 992px) {
.mb-lg-0 {
margin-bottom: 0rem !important;
}
}
@media (min-width: 992px) {
.mb-lg-2 {
margin-bottom: 0.75rem !important;
}
}
@media (min-width: 992px) {
.mb-lg-5 {
margin-bottom: 4.5rem !important;
}
}
@media (min-width: 992px) {
.py-lg-4 {
padding-top: 2.25rem !important;
padding-bottom: 2.25rem !important;
}
}
@media (min-width: 992px) {
.py-lg-5 {
padding-top: 4.5rem !important;
padding-bottom: 4.5rem !important;
}
}
@media (min-width: 992px) {
.pe-lg-4 {
padding-right: 2.25rem !important;
}
}
@media (min-width: 992px) {
.ps-lg-5 {
padding-left: 4.5rem !important;
}
}
@media (min-width: 1200px) {
.px-xl-5 {
padding-left: 4.5rem !important;
padding-right: 4.5rem !important;
}
}
|