This repository has been archived by the owner on Aug 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
68 lines (58 loc) · 1.46 KB
/
main.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
58
59
60
61
62
63
64
65
66
67
68
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;0,6..12,1000;1,6..12,200;1,6..12,300;1,6..12,400;1,6..12,500;1,6..12,600;1,6..12,700;1,6..12,800;1,6..12,900;1,6..12,1000&display=swap");
#loadContainer {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
width: 100%;
height: 100%;
position: absolute;
}
#loadingLogo {
max-height: 30%;
}
body {
background-color: black;
color: white;
font-family: 'Nunito Sans', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin: 0%;
}
#loadStatusText {
top: 5%;
}
button {
border: none;
border-radius: 6px;
background-color: #282828;
color: #cccccc;
font-family: "Nunito Sans", sans-serif;
font-size: 14px;
padding: 8px 15px;
}
button:hover {
background: #3a3a3a;
}
button:active {
background-color: #111;
}
button:disabled {
background-color: #7a7a7a;
}
input {
border: none;
border-radius: 6px;
background-color: #353535;
color: #cccccc;
font-family: "Nunito Sans", sans-serif;
font-size: 14px;
padding: 8px 15px;
}
select {
border: none;
border-radius: 6px;
background-color: #353535;
color: #cccccc;
font-family: "Nunito Sans", sans-serif;
font-size: 14px;
padding: 8px 15px;
}