-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoptions.css
76 lines (64 loc) · 1.03 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
* {
box-sizing: border-box;
}
body {
font-family: sans-serif;
font: message-box;
font-size: 15px;
color: #333;
line-height: 20px;
}
code {
line-height: 1rem;
font-family: monospace;
font-size: 12px;
padding: 2px 4px;
background-color: #f7f7f9;
border-radius: 3px;
color: #b02;
}
input[type=text] {
margin: 2px 0;
padding: 2px 4px;
line-height: 20px;
min-height: 30px;
background-color: #fff;
border: 1px solid #c1c1c1;
font-size: 15px;
}
button, select {
min-width: 95px;
margin: 2px 4px;
}
p {
margin: 0.33rem 0.18rem;
}
ul {
margin: 0;
}
table {
width: 100%;
border-collapse: collapse;
}
td {
border: 1px solid #ccc;
padding: 0.2rem 0.4rem;
}
td.label {
text-align: right;
vertical-align: middle;
font-weight: bold;
}
td.value input[type=text] {
vertical-align: top;
width: 100%;
}
#status {
font-weight: bold;
font-size: small;
color: red;
}
#save {
font-weight: bold;
line-height: 20px;
}