-
Notifications
You must be signed in to change notification settings - Fork 6
/
base.css
72 lines (62 loc) · 1.61 KB
/
base.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
64
65
66
67
68
69
70
71
72
/* popup, tab, options, help */
:root {
--border-radius: 8px; /* Matches FF popup's rounded corners */
--popup-button-size: 30px;
--popup-row-height: 36px;
--popup-name-height: 28px;
--popup-name-width: 20rem;
--popup-field-x-padding: 6px;
--popup-heading-height: 22px;
--popup-private-button-color: darkorchid;
--danger-color: red;
--success-color: #0b0;
--accent-color: #0061e0;
--text-color: black;
--muted-text-color: #666;
--private-text-color: purple;
--samp-text-color: #ddd;
--page-bg-color: white;
--popup-field-color: white;
--popup-row-color: #eee;
--popup-hover-row-color: #ddd;
--popup-border-color: #ccc;
--popup-hover-button-color: #ccc;
}
.dark {
--accent-color: #0df;
--text-color: white;
--muted-text-color: #ccc;
--private-text-color: #f6f;
--samp-text-color: #33333b;
--page-bg-color: #23222b;
--popup-field-color: #23222b;
--popup-row-color: #42414d;
--popup-hover-row-color: #52525e;
--popup-border-color: #333;
--popup-hover-button-color: #666;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
accent-color: var(--accent-color);
}
hr {
border-width: .5px;
opacity: .5;
}
a {
color: var(--accent-color);
}
kbd {
padding: 0 3px;
border: 1px solid currentColor;
border-radius: 3px;
}
samp {
font-size: 1rem;
font-weight: bold;
white-space: nowrap;
background-color: var(--samp-text-color);
}
.error {
border-color: var(--danger-color) !important;
}