-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (65 loc) · 1.39 KB
/
style.css
File metadata and controls
74 lines (65 loc) · 1.39 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
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Berkshire+Swash&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;0,6..96,800;0,6..96,900;1,6..96,400;1,6..96,500;1,6..96,600;1,6..96,700;1,6..96,800;1,6..96,900&display=swap');
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: "Abril Fatface", cursive;
}
body, html{
width: 100%;
height: 100%;
overflow: hidden;
background: #f9f9f9;
}
#main-container{
width: 100%;
height: 100%;
position: relative;
top: 0px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.loader{
position: absolute;
top: 0px;
bottom: 0px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: springgreen;
width: 100vw;
height: 100vh;
}
.loader h1{
position: relative;
color: #333;
font-size: 50px;
font-weight: 500;
}
.loader .text{
overflow: hidden;
}
.line-container{
position: relative;
width: 450px;
height: 6px;
overflow: hidden;
border-radius: 10px;
}
.line{
position: absolute;
width: 450px;
height: 6px;
background: #333;
right: 0;
overflow: hidden;
}
h2{
font-weight: 500;
font-size: 50px;
transform: translateY(-100px);
font-family: "Berkshire Swash", cursive;
}