blob: a9dbc9ddb5f94f1e938ea3509337e889a6581acc (
plain)
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
|
:root {
--background: #4C515B;
--foreground: #DDE2EB;
}
body, button, input {
font-size: 18px;
font-weight: 700;
overflow: hidden;
color: var(--foreground);
text-transform: uppercase;
background: var(--background);
font-family: "Roboto Mono", monospace;
}
.line {
display: flex;
margin-top: 15px;
}
.buttons {
margin-left: auto;
margin-right: 7px;
}
button, .text {
border: none;
outline: none;
padding: 5px 15px;
border-radius: 50px;
}
#update {background: #81A1C1}
#setpath {background: #5E81AC}
#vanilla {background: #656E7F}
#northstar {background: #C7777F}
|