-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
87 lines (77 loc) · 1.59 KB
/
stylesheet.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
@import url("https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Seaweed+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
* {
font-family: 'Ubuntu', sans-serif;
}
header {
width: 100%;
position: fixed;
z-index: 1;
}
nav > div {
padding: 1rem 0;
backdrop-filter: blur(35px);
background-color: #ffffff2b;
border-radius: 50rem;
}
.radius-50 {
border-radius: 1rem;
}
.collapse:not(.show)
.nav-link {
font-size: 1.1rem;
color: #FFFFFF !important;
padding: 0 1.5rem !important;
}
.menu:focus {
box-shadow: none;
}
.menu i {
color: #fff;
font-size: 1.8rem;
}
.logo h1 {
font-size: 1.8rem !important;
font-weight: bold;
color: #FFFFFF;
}
.video {
height: 100vh;
}
.video video {
position: fixed;
height: 100%;
width: 100%;
object-fit: cover;
/* filter: contrast(1.2); */
}
.detail {
position: fixed;
bottom: 4rem;
text-align: center;
}
.detail,
.detail a {
color: #FFFFFF;
}
.detail p {
font-size: 55px;
}
.detail a {
font-size: 20px;
}
.detail .arrow {
font-size: 20px;
animation: arrow 1s infinite;
transition: all .3s ease;
}
@keyframes arrow {
0% {
transform: translateY(-5px);
}
100% {
transform: translateY(10px);
}
}