-
Notifications
You must be signed in to change notification settings - Fork 0
/
create-profile.css
304 lines (251 loc) · 5.63 KB
/
create-profile.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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/* General styles */
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #020630;
color: #fff;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #222;
}
.logo {
font-size: 24px;
font-weight: bold;
color: #fff;
}
.navbar ul {
list-style: none;
padding: 0;
margin-left: -50px;
display: flex;
}
.navbar ul li {
margin-left: 20px;
}
.navbar ul li a {
text-decoration: none;
color: #fff;
transition: color 0.3s ease;
}
.navbar ul li a:hover {
color: #1e90ff;
}
.login-btn {
padding: 10px 20px;
background-color: #1e90ff;
border: none;
border-radius: 5px;
color: #fff;
cursor: pointer;
transition: background-color 0.3s ease;
}
.login-btn:hover {
background-color: #1c7ed6;
}
/* Create Profile Section */
.create-profile-section {
text-align: center;
padding: 50px 20px;
}
.create-profile-section h1 {
font-size: 36px;
margin-bottom: 20px;
}
.create-profile-section p {
font-size: 18px;
margin-bottom: 40px;
}
.create-profile-container {
display: flex;
flex-direction: column; /* Stack items vertically */
align-items: center;
padding: 20px;
background-color: #020630;
}
.create-profile-content {
background-color: #eaeaea;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
width: 500px; /* Width of the content box */
position: relative;
margin-bottom: 20px; /* Space between content box and button */
}
.create-profile-content::before,
.create-profile-content::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 2px;
background-color: #1e90ff;
}
.create-profile-content::before {
left: -20px; /* Adjust this value for distance from the box */
}
.create-profile-content::after {
right: -20px; /* Adjust this value for distance from the box */
}
.create-btn-container {
background-color: #fff; /* White background for button container */
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
color: #000214;
}
.create-btn {
padding: 15px 30px;
background-color: #1e90ff;
border: none;
border-radius: 5px;
color: #fff;
cursor: pointer;
transition: background-color 0.3s ease;
margin: 0; /* Remove top margin as it's now in its own container */
}
.create-btn:hover {
background-color: #1c7ed6;
}
/* Footer styles */
footer {
background-color: #000214;
padding: 20px 0;
border-top: 1px solid #eaeaea;
color: #f2efef;
}
.footer-container {
display: flex;
justify-content: space-between;
padding: 0 50px;
}
.footer-left, .footer-middle, .footer-right {
flex: 1;
margin: 0 15px;
}
.footer-logo {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.footer-logo img {
width: 100px;
margin-right: 10px;
}
.footer-buttons {
display: flex;
gap: 10px;
margin-top: 15px;
}
.footer-buttons .footer-star-btn, .footer-buttons .footer-netlify-btn {
padding: 10px 20px;
border: none;
cursor: pointer;
}
.footer-middle ul, .footer-right ul {
list-style: none;
padding: 0;
}
.footer-middle ul li, .footer-right ul li {
margin-bottom: 10px;
}
.footer-middle ul li a, .footer-right ul li a {
text-decoration: none;
color: #f1eeee;
}
.footer-social-icons a {
color: #ffffff;
margin-right: 15px;
font-size: 18px;
}
.footer-bottom {
text-align: center;
padding: 10px 0;
border-top: 1px solid #eaeaea;
margin-bottom: -15px;
}
.footer-bottom a {
color: #007bff;
text-decoration: none;
}
.footer-bottom a:hover {
text-decoration: underline;
}
/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
.navbar ul {
margin-left: 0;
}
.create-profile-content {
width: 90%; /* Make the content box responsive */
max-width: 500px; /* Ensure it doesn't get too wide on larger screens */
}
}
@media (max-width: 768px) {
.navbar {
flex-direction: column;
align-items: flex-start;
}
.navbar ul {
flex-direction: column;
margin-left: 0;
}
.navbar ul li {
margin-left: 0;
margin-bottom: 10px;
}
.create-profile-container {
padding: 10px;
}
.create-profile-content {
width: 100%;
padding: 15px;
}
.create-btn-container {
padding: 15px;
}
.footer-container {
flex-direction: column;
padding: 0 20px;
}
.footer-left, .footer-middle, .footer-right {
margin: 0;
margin-bottom: 20px;
}
}
@media (max-width: 480px) {
.navbar {
padding: 10px;
}
.logo {
font-size: 20px;
}
.login-btn {
padding: 8px 15px;
}
.create-profile-section h1 {
font-size: 28px;
}
.create-profile-section p {
font-size: 16px;
}
.create-profile-content {
padding: 10px;
font-size: 14px; /* Adjust font size if needed */
}
.create-btn {
padding: 10px 20px;
}
.footer-container {
padding: 0 10px;
}
.footer-logo img {
width: 80px;
}
.footer-buttons .footer-star-btn, .footer-buttons .footer-netlify-btn {
padding: 8px 15px;
}
}