-
Notifications
You must be signed in to change notification settings - Fork 1
/
style1_m.css
249 lines (201 loc) · 4.34 KB
/
style1_m.css
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
* {
margin: 0;
padding: 0;
}
/* Header CSS Start */
/*.nav{
margin-bottom: 90px !important;
}*/
.navbar-toggler:focus {
box-shadow: 0 0 0 0.25rem #4fd169;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.dropdown-menu {
margin: 0;
padding: 0;
border-radius: 0;
border: 0;
}
.dropdown-item:active,
.dropdown-item:hover {
background-color: #F3F4EE;
}
.dropdown-item {
font-size: 16px;
font-weight: 400;
line-height: 1;
padding: 15px 20px;
color: black;
border-bottom: 1px solid #e5e5e5;
}
li:last-child .dropdown-item {
border-bottom: none;
}
.navbar-brand {
font-size: 20px;
font-weight: 700;
line-height: 30px;
color: inherit;
}
.navbar-brand:hover {
color: inherit;
}
.navbar-brand span {
color: #f55f1d;
}
.dropdown-toggle::after {
display: none;
}
header .navbar-expand-lg .navbar-nav {
column-gap: 30px;
}
.text-dark {
color: black;
}
.fw-regular {
font-weight: 500;
}
.radius-10 {
border-radius: 10px;
}
.btn-outline-success {
border-color: #20b15a;
}
.btn-outline-success:hover {
border-color: white;
}
.btn-success {
border-color: #20b15a;
background-color: #20b15a;
}
header {
width: 100%;
margin-bottom: 20px;
}
.navbar {
justify-content: flex-end !important; /* Align navbar to the right */
height: 80px; /* Set the height of the navbar */
padding: 20px; /* Add padding to increase the size of the navbar */
}
/* Header CSS End */
.container {
width: 90%;
max-width: 800px;
margin: 0 auto;
padding: 40px;
background-color: #f9f9f9;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.container h1 {
font-size: 36px;
color: #333;
margin-bottom: 30px;
}
.container h1 span {
color: #20b15a;
}
.container p {
font-size: 18px;
color: #666;
line-height: 1.6;
margin-bottom: 20px;
}
.container ul {
text-align: left;
margin-bottom: 20px;
}
.container ul li {
font-size: 16px;
color: #444;
list-style: disc;
margin-left: 20px;
}
.container p:last-child {
margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
.container {
padding: 30px;
}
.container h1 {
font-size: 32px;
}
.container p {
font-size: 16px;
}
.container ul li {
font-size: 14px;
}
}
@media only screen and (max-width: 480px) {
.container {
padding: 20px;
}
.container h1 {
font-size: 28px;
}
.container p {
font-size: 14px;
}
.container ul li {
font-size: 12px;
}
}
/* Footer Start */
.site-footer {
padding: 75px 0 30px;
background-color: #4fd169;
}
.site-footer h2 {
font-size: 39px;
font-weight: 700;
line-height: 1.2;
margin-bottom: 20px;
}
.site-footer h2 a {
color: inherit;
text-decoration: none;
}
.site-footer .social-icons {
margin-top: 20px;
column-gap: 15px;
}
.site-footer .social-icons li a {
height: 41px;
width: 41px;
border-radius: 41px;
background-color: #20b15a;
color: white;
font-size: 17px;
display: inline-flex;
justify-content: center;
align-items: center;
}
.site-footer .social-icons li a i {
line-height: 1;
}
.site-footer h3 {
font-size: 20px;
font-weight: 600;
line-height: 1.2;
margin-bottom: 25px;
}
.site-footer .footer-menu {
row-gap: 25px;
}
.site-footer .footer-menu li a {
display: inline-block;
font-size: 18px;
font-weight: 500;
line-height: 1;
color: inherit;
text-decoration: none;
}
.site-footer .copyright {
margin: 70px 0 0;
}
/* Footer End */