-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
49 lines (33 loc) · 840 Bytes
/
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
/* font color link */
/* https://colorhunt.co/palette/d6efd880af81508d4e1a5319 */
body::before {
display: block;
content: '';
height: 40px;
}
section {
padding: 60px 0;
}
.carousel-item {
transition: transform 20s ease-in-out !important; /* Adjust the duration and easing */
}
@media (min-width: 768px) {
.dropdown:hover .dropdown-menu {
display: block;
}
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
body {
font-family: 'Poppins', sans-serif;
}
/* the favicon */
favicon {
display: inline-block;
width: 16px; /* Standard favicon size */
height: 16px;
background-image: url('air-quality-logo.png');
background-size: cover;
}
.hover-text-green:hover {
color: green;
}