-
-
Notifications
You must be signed in to change notification settings - Fork 678
Expand file tree
/
Copy pathstyle.css
More file actions
31 lines (27 loc) · 616 Bytes
/
style.css
File metadata and controls
31 lines (27 loc) · 616 Bytes
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
@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");
* {
box-sizing: border-box;
}
body {
font-family: "Ubuntu", sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
}
.bg {
background: url("https://images.unsplash.com/photo-1610217053402-b187336e9443?auto=format&fit=crop&w=2100&q=80")
no-repeat center center / cover;
position: absolute;
top: -30px;
left: -30px;
width: calc(100vw + 60px);
height: calc(100vh + 60px);
z-index: -1;
}
.loading-text {
font-size: 50px;
color: #a3b1c3;
}