-
Notifications
You must be signed in to change notification settings - Fork 30
/
style.css
372 lines (312 loc) · 6.54 KB
/
style.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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
/* Navbar styles */
html *
{
font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
}
body {
position: relative;
}
#titled{
font-size: xx-large;
position: relative;
text-decoration: none;
transition: 0.6s;
}
/* Added Animation to the title */
#titled::before{
content: '';
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background:#f8f9fa;
animation: showRight 1s ease forwards;
animation-delay: .4s;
}
/* Added Animation to the title */
a #titled:hover{
color: black;
opacity: 0.8;
}
.navbar {
background-color: #FFC0CB; /* Pink background color for the navbar */
}
.pink-bg {
background-color: #FFC0CB; /* Pink background color for the offcanvas body */
}
.pink-text {
color: #C71585; /* Pink color for the navbar brand text */
}
.nav-link {
font-size: 18px; /* Custom font size */
color: rgb(255, 255, 255); /* Custom link color */
margin-right: 15px; /* Custom margin between the nav items */
transition: all 0.3s; /* Smooth transition for size and color changes */
}
.nav-link:hover {
font-size: 20px; /* Slightly bigger font size on hover */
color: #FF69B4; /* Lighter pink color on hover */
}
.nav-link:active {
font-size: 20px; /* Slightly bigger font size on click */
color: #C71585; /* Darker pink color on click */
}
/* Navbar styles (same as before) */
#registerButton{
color: #00bfff;
transition: 0.3s;
}
#registerButton:hover{
border-radius: 20px;
scale: 1.06;
color: #ffffff;
}
#cdtt{
color: #050505;
display: flex;
justify-content: center;
align-items: center;
}
#cdt{
color: #ffffff;
}
.card{
background-color: rgba(255, 255, 255, 0.142);
backdrop-filter: blur(5px);
}
.btn.btn-primary{
color: #0e0d0d;
transition:all 0.3s;
}
.btn.btn-primary:hover{
border-radius: 20px;
scale: 1.08;
color: #f1f1f1;
background-color: #5500ff;
}
/* New section styles */
.hero-section {
background-image: url('images/bg1.jpg');
background-size: cover;
background-position: center;
min-height: 450px; /* Adjust height as needed */
display: flex;
align-items: center;
}
.hero-content {
text-align: center;
}
.hero-title {
font-size: 40px;
font-weight: bold;
color: #404040; /* Dark pink color for the hero title */
}
.hero-subtitle {
font-size: 20px;
color: #513242; /* Dark pink color for the hero subtitle */
}
.cards-section {
background-image: url('images/cards.jpg');
background-size: cover;
background-position: center;
min-height: 500px; /* Adjust height as needed */
display: flex;
align-items: center;
justify-content: center;
}
.cards-section .row
{
display: flex;
gap: 20px;
justify-content: center;
}
.card { /* Adjust the card width as needed */
width:25rem;
/* margin: 20px 5%; Add more space between the cards horizontally and vertically */
border: 1px solid #ccc;
border-radius: 10px;
padding: 20px;
display: flex;
flex-direction: column;
}
.gradient-background {
background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);
background-size: 180% 180%;
animation: gradient-animation 18s ease infinite;
}
/* KEYFRAMES ANIMATION */
@keyframes showRight {
100% {
width: 0;
}
}
@keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.card-img-top {
height: 200px; /* Adjust the image height as needed */
object-fit: cover;
border-radius: 10px;
}
.card-title {
font-size: 20px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
}
.card-text {
font-size: 16px;
color: #555;
}
.me-3{
font-size: medium;
color: #0e0d0d;
}
.form-popup {
display: none;
position: fixed;
bottom: 0;
right: 15px;
border: 3px solid #f1f1f1;
z-index: 9;
}
.form-container {
max-width: 300px;
padding: 10px;
background-color: white;
color: black;
}
.form-container input[type=text], .form-container input[type=password] {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
border: none;
background: #f1f1f1;
}
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
background-color: #ddd;
outline: none;
}
.form-container .btn:hover, .open-button:hover {
opacity: 0;
}
.abc{
height: 85px;
}
.btn{
transition: 50ms;
}
.btnn{
color: white;
background-color:darkslateblue;
transition: 50ms;
}
.btnn:hover{
color: white;
background-color:rgb(0, 0, 0);
}
.pink-text{
margin-left: 46%;
}
.footerr p{
margin-left: 5px;
}
/* Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
.button{
margin:auto;
padding-left: 18%;
}
.button1{
margin:auto;
padding-left: 25%;
}
.modal-wrap {
display: none;
position: absolute;
top: 0;
width: 100%;
height: 100%;
z-index: 9999;
background-color: #908d8db0;
}
.modal-wrap_active {
display: block;
}
.info-wrap {
margin: 180px auto;
width: 300px;
background-color: #fff;
border: solid 2px #000;
border-radius: 5px;
padding: 20px;
}
.info-text {
font-size: 16px;
text-align: center;
color: #c71585;
font-weight: bold;
}
.btn-group {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.btnA {
width: 100px;
border: solid 2px #c71585;
border-radius: 10px !important;
color: #c71585;
margin-bottom: 10px;
cursor: pointer;
}
.btnA:hover {
background-color: #c71585;
color: #fff;
}
@media only screen and (max-width:825px) and (min-width:480px) {
.row{
margin-bottom: 10px;
margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
}
@media only screen and (max-width:480px) {
.row{
margin-bottom: 10px;
margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
.card{
width: 18rem;
}
.button1{
padding-left: 20%;
padding-right: 20%;
}
}