-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstylesheet.css
63 lines (53 loc) · 962 Bytes
/
stylesheet.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
@import url(switch.css);
@import url(button.css);
:root {
--bg-color: white;
--txt-color: black;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #202124;
--txt-color: #ebebeb;
}
}
html, body {
margin: 0;
font-family: Arial;
font-size: 15px;
height: 100%;
width: 100%;
background-color: var(--bg-color);
color: var(--txt-color);
}
body, .center, .container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.inline-center {
display: flex;
align-items: center;
justify-content: center;
}
h2, h3 {
font-weight: lighter;
}
body > *, .container > * {
margin-bottom: 10px;
}
input[type=file] {
padding: 5px;
border: 2px solid white;
border-radius: 10px;
}
.inline > * {
display: inline;
}
input[type="number"] {
background-color: #131416;
color: rgba(255, 255, 255, 0.856);
font-size: 1rem;
border: 1px solid #ffffff8d;
border-radius: 5px;
}