forked from rizzesh/Urbanbites
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (37 loc) · 711 Bytes
/
Copy pathstyle.css
File metadata and controls
43 lines (37 loc) · 711 Bytes
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
body {
font-family: "Poppins", sans-serif;
scroll-behavior: smooth;
}
.navbar-brand .small-text {
font-size: 0.75rem;
line-height: 1;
opacity: 0.8;
margin-top: -0.2rem;
display:flex;
justify-content: center;
}
.navbar-brand strong {
color: white;
}
.carousel img {
height: 80vh;
object-fit: cover;
}
.card-hover {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
transform: translateY(-10px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
#cookieAlert {
position: fixed;
bottom: 0;
width: 100%;
z-index: 2000;
}
@media (max-width: 768px) {
.carousel img {
height: 50vh;
}
}