-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
169 lines (129 loc) · 2.66 KB
/
style.css
File metadata and controls
169 lines (129 loc) · 2.66 KB
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
/* nope */
@font-face {
font-family: aquire;
src: url(./Aquire-BW0ox.otf);
}
* {
margin: 0;
padding: 0;
font-family: aquire;
}
html, body {
scroll-behavior: smooth;
}
body {
background-color: #201250;
}
header {
display: flex;
height: 500px;
height: 70dvh;
background-image: url(./images/1LpcnL4.jpeg);
/* background-image: url(./images/scary-face.jpg); */
background-position: top center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
header nav {
display: flex;
height: 50px;
width: 100%;
background-color: #00000090;
backdrop-filter: blur(5px);
align-items: center;
justify-content: space-between;
position: fixed;
user-select: none;
}
header nav ul, nav ul span {
list-style: none;
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px;
color: #fefefe;
}
header nav .navItems2 i {
display: none;
}
header nav .navItems2 {
width: 11dvw;
}
header nav .navItems2 a {
color: #fefefe;
text-decoration: none;
}
header nav .navItems2 span {
width: 100%;
justify-content: space-between;
}
header nav .navItems2 li {
border-bottom: 2px solid transparent;
transition: all .5s;
}
header nav .navItems2 li:hover {
border-color: #fefefe;
}
header .title {
justify-self: center;
align-self: center;
width: 100%;
text-align: center;
color: #fefefe;
}
.scroll, .nothing {
margin-top: 20px;
text-align: center;
color: white;
}
.nothing {
margin-bottom: 50px;
}
.nothing * {
padding: 25px 0;
}
.nothing a {
color: #fefefe;
background-color: #ff9900;
padding: 15px 25px;
text-decoration: none;
border-radius: 7px;
box-shadow: 0 0 20px 2px #ee8800;
transition: .6s;
}
.nothing a:hover {
background-color: #ee2299;
box-shadow: 0 0 20px 2px #ee2299;
}
@media only screen and (max-width: 900px) {
header nav .navItems2 span {
display: none;
}
header nav .navItems2 i {
display: block;
}
header nav .navItems2 {
width: 5dvh;
position: relative;
}
header nav .navItems2 span {
position: absolute;
top: 55px;
right: 5px;
cursor: pointer;
flex-wrap: nowrap;
background-color: #00000090;
backdrop-filter: blur(5px);
padding: 10px 10px;
vertical-align: middle;
transition: all .5s;
border-radius: 7px;
}
header nav .navItems2 span li {
padding: 15px 0;
}
header nav .navItems2:hover span {
display: inline-block;
}
}