-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathoptions.css
More file actions
114 lines (111 loc) · 1.72 KB
/
options.css
File metadata and controls
114 lines (111 loc) · 1.72 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
:root {
color-scheme: light dark;
}
@media (prefers-color-scheme: light) {
html, body {
color: black;
background-color: white;
}
button, input, select, textarea {
border: 2px outset #555;
}
}
@media (prefers-color-scheme: dark) {
html, body {
color: white;
background-color: #2c2c2c;
}
button, input, select, textarea {
color: white;
background-color: #202020;
caret-color: white;
border: 2px outset #656565;
}
::selection {
color: white;
background-color: #09e;
}
input:disabled {
color: #999;
background-color: #393939;
border: 2px inset #494949;
}
}
/*overrides chrome default size and avoid setting for android*/
@media (pointer: fine) {
body {
min-width: 500px;
}
}
body {
padding: 0;
margin: .8em .2em;
overflow: hidden;
}
a {
color: white;
background-color: #0af;
font-weight: bold;
text-decoration: none;
padding: 0 0.4em;
border: 2px outset #0af;
border-radius: 15px;
}
h4 {
margin: 1.5em 0 .15em 0;
}
label {
margin: .15em 0;
}
button, input, select, textarea {
padding: 0 .3em;
border-radius: 3px;
}
input:invalid:not(#fsprecision) {
box-shadow: none;
}
:focus:not(a) {
border: 2px outset #0af;
}
button {
padding: .1em .7em;
}
textarea {
width: 100%;
max-width: -moz-available;
max-width: -webkit-fill-available;
padding: .2em .4em;
resize: none;
overflow: hidden;
}
input[type="text"] {
padding: 0 .5em;
}
input[type="number"] {
width: 4em;
}
input[type="checkbox"] {
vertical-align: middle;
margin: 0;
}
textarea.error {
border: 2px outset #f20;
}
.fixedWidth {
display: inline-block;
max-width: 55%;
width: 14em;
margin-right: .2em;
}
.labelCheckBox {
vertical-align: middle;
}
.floatLeft {
float: left;
}
.floatRight {
float: right;
}
#fsdivision {
width: 6em;
}