-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.css
More file actions
63 lines (51 loc) · 982 Bytes
/
options.css
File metadata and controls
63 lines (51 loc) · 982 Bytes
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
#status {
display: inline-block;
vertical-align: middle;
margin-left: .5rem;
margin-top: -0.2rem;
}
label {
display: inline-block;
margin-right: .5rem;
}
#min_width {
max-width: 60px;
}
#help {
margin-top: 2rem;
}
h3 {
margin-bottom: .5rem;
}
table {
border-collapse: separate;
border-spacing: 0;
border: 1px solid #ddd;
border-radius: 2px;
margin-bottom: 0;
}
table thead tr td {
font-size: 0.8rem;
background: linear-gradient(to bottom, #eee 0%,#ddd 100%);;
padding: .25rem .5rem .5rem;
}
table thead tr td:first-child {
border-radius: 2px 0 0 0;
}
table thead tr td:last-child {
border-radius: 0 2px 0 0;
}
table tbody tr td {
vertical-align: top;
font-size: 0.8rem;
padding: .25rem .5rem .5rem;
}
table tbody tr:nth-child(2n) {
background: #eee;
}
table tbody tr td:first-child {
border-radius: 0 0 0 2px;
}
table tbody tr td:last-child {
border-radius: 0 0 2px 0;
}