-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoptions.css
111 lines (98 loc) · 1.83 KB
/
options.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
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
body {
margin: 0;
padding-left: 15px;
padding-top: 53px;
font-family: "Open Sans", "sans-serif";
font-size: 13px;
color: rgb(48, 57, 66);
}
h1 {
font-size: 1.5em;
margin-bottom: 0.8em;
margin-left: 0.3em;
color: black;
}
h3 {
font-size: 1.2em;
margin-bottom: 0.8em;
color: black;
}
p {
margin: 0.65em 0;
}
header {
position: fixed;
top: 0;
left: 15px;
right: 0;
border-bottom: 1px solid #eee;
background: linear-gradient(white, white 40%, rgba(255, 255, 255, 0.92));
z-index: 100000;
}
header, #main {
min-width: 450px;
max-width: 450px;
}
#main {
padding-left: 35px;
margin-top: 8px;
margin-bottom: 24px;
}
#main h3 {
margin-left: -18px;
}
button {
-webkit-appearance: none;
position: relative;
margin: 0 1px 0 0;
padding: 0 10px;
min-width: 4em;
min-height: 2em;
background-image: linear-gradient(#ededed, #ededed 38%, #dedede);
border: 1px solid rgba(0, 0, 0, 0.25);
border-radius: 2px;
outline: none;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.75);
color: #444;
text-shadow: 0 1px 0 rgb(240, 240, 240);
font: inherit;
user-select: none;
}
input[type="text"] {
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
width: 75px;
text-align: center;
border: 1px solid #cccccc;
}
#checkbox-wrapper {
width: 75px;
text-align: center;
display: inline-block;
}
span {
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
width: 90px;
text-align: center;
display: inline-block;
}
.settings {
margin: 10px 0;
}
label, #button-wrap {
display: inline-block;
width: 200px;
}
.invalid-value {
display: inline-block;
padding-left: 15px;
color: red;
}
#status {
display: inline-block;
font-weight: bold;
width: 79px;
text-align: center;
}
select {
border: 1px solid #cccccc;
}