aboutsummaryrefslogtreecommitdiff
path: root/css/popup.css
blob: 573d18fe8a1e494c0c0f211f627b16ff18616409 (plain) (blame)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
body {
	width: 180px;
	text-align: center;
	font-family: Arial, sans-serif;
}

h1 {
	margin-top: 4px;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 1.5px;
}

h1 span {
	position: relative;
	top: 1px;
	font-size: 38px;
}

button {
	margin: 5px auto !important;
	display: block;
	width: 90%;
}

.disabled {
	margin-top: -16px;
	height: 13px;
	color: red;
	font-size: 12px;
}

label {
	margin: 6px auto;
	display: block;
	width: 85%;
	text-align: left;
	font-size: 12px !important;
}

/* Firefox only */
@supports (-moz-appearance:none) {
    	label input {
        	position: relative;
        	top: 1px;
    	}
}

button {
	height: 20px;
	border: solid 1px #aaa !important;
	border-radius: 3px;
	color: #333;
}

label span {
	position: relative;
	top: 1px;
}

@media (prefers-color-scheme: dark) {

	html {
		background: rgb(52,53,56);
		color: #ddd;
	}

	h1,
	label {
		color: #eee;
	}

	th {
		color: #eee;
		font-weight: normal;
	}

	.disabled span {
		color: rgb(240,85,82);
	}

	button {
		border: solid 1px #777 !important;
		background-color: rgb(32,33,36) !important;
		color: #ddd;
	}
}