-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (34 loc) · 735 Bytes
/
style.css
File metadata and controls
38 lines (34 loc) · 735 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
32
33
34
35
36
37
38
/* global vars */
:root {
--BGcolour: black;
--TextColour: white;
}
body {
width: 100vw;
height: 100vh;
padding: 0;
margin: 0;
overflow: hidden;
user-select: none;
background-color: var(--BGcolour);
color: var(--TextColour);
cursor: none;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h2{
padding: 0;
margin: 2px;
font-weight: 650;
font-size: 25px;
mix-blend-mode: difference;
}
.spinner{
font-family: Segoe Boot Semilight;
font-size: 50px;
margin-bottom: 15px;
mix-blend-mode: difference;
}