-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.css
94 lines (87 loc) · 1.85 KB
/
index.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
body{
font-family: "Inter", sans-serif;
}
#slider-1 {
position: relative;
background-image: url('assets/images/about/nairobi.jpg');
background-size: cover;
background-repeat: no-repeat;
}
#slider-1 .hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(123, 25, 25, 0.63);
}
.active {
font-weight: bold;
text-decoration: underline;
text-decoration-thickness: 0.2em;
}
.hero-btn {
background: linear-gradient(
-45deg,
#7c1000,
#ff4605,
rgba(234, 66, 66, 0.76),
rgba(255, 0, 0, 0.6),
#d3312e,
#ea0000,
#50010a
);
}
.bg-blur::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.8);
}
.nav {
color: white;
background: linear-gradient(
-45deg,
#7c1000,
#ff4605,
rgba(234, 66, 66, 0.76),
rgba(255, 0, 0, 0.6),
#d3312e,
#ea0000,
#50010a
);
background-size: 400% 400%;
animation: backgroundChange1 30s ease infinite;
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}
.cta, #banner {
color: white;
background: linear-gradient(
-45deg,
#7c1000,
#ff4605,
rgba(234, 66, 66, 0.76),
rgba(255, 0, 0, 0.6),
#d3312e,
#ea0000,
#50010a
);
background-size: 400% 400%;
animation: backgroundChange1 20s ease infinite;
}
@keyframes backgroundChange1 {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}