-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (49 loc) · 987 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
50
51
52
53
54
55
56
57
@font-face {
font-family: Jetbrains Mono;
src: url(https://cdn.jsdelivr.net/gh/Raphdf201/Raphdf201.github.io@main/assets/fonts/JetbrainsMono/JetBrainsMono-Regular.ttf);
}
* {
font-family: Jetbrains Mono;
color: white;
background-color: #222;
margin: 0;
}
body {
overflow: hidden;
}
.loading {
position: absolute;
height: 100vh;
width: 100vw;
transition: 0.45s;
}
.loading-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -70%);
font-size: 7vw;
/*text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3),
5px 5px 70px rgba(255, 255, 255, 0.5);*/
}
.number {
width: 100%;
text-align: center;
}
#bar {
width: 300px;
height: 12px;
border: 1px solid white;
/*box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3),
5px 5px 70px rgba(255, 255, 255, 0.5);*/
}
#progress {
background: white;
width: 0%;
height: 100%;
}
header {
min-height: 100vh;
overflow: hidden;
background: url(./assets/bg.webp) center/cover;
}