blob: c9c62fbbe59a05721b7a6d0b93ca80ad43ac9e59 (
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
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
|
:root {
--background: #4C515B;
--foreground: #DDE2EB;
--btnforeground: var(--foreground);
}
@media (prefers-color-scheme: light) {
:root {
--background: #FFFFFF;
--foreground: #4C566A;
--btnforeground: var(--background);
}
}
@font-face {
font-family: "Roboto Mono";
src: url("roboto.ttf");
}
body, button, input {
font-size: 18px;
font-weight: 700;
overflow: hidden;
-webkit-app-region: drag;
color: var(--foreground);
text-transform: uppercase;
background: var(--background);
font-family: "Roboto Mono", monospace;
}
.line {
display: flex;
margin-top: 15px;
}
.buttons {
text-align: right;
margin-left: auto;
margin-right: 7px;
}
.text {max-width: 38vw}
.buttons {max-width: 55vw}
button, .text {
border: none;
outline: none;
padding: 5px 15px;
border-radius: 50px;
transition: 0.2s ease-in-out;
}
button {
margin-bottom: 10px;
color: var(--btnforeground);
-webkit-app-region: no-drag;
}
button:hover {opacity: 0.9}
button:active {
opacity: 0.7;
transform: scale(0.95);
}
#update {background: #81A1C1}
#setpath {background: #5E81AC}
#northstar {background: #C7777F}
#vanilla, #exit {background: #656E7F}
|