aboutsummaryrefslogtreecommitdiff
path: root/src/app/main.css
blob: 854c47a07360706e96d1ec3f237ae292c3fcb68d (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
: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 {
	margin-left: auto;
	margin-right: 7px;
}

button, .text {
	border: none;
	outline: none;
	padding: 5px 15px;
	border-radius: 50px;
	transition: 0.2s ease-in-out;
}

button {
	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}