forked from summerblue/chrome-phphub-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.css
51 lines (49 loc) · 792 Bytes
/
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
body {
font: normal 12px arial, serif;
background: white;
overflow-x: hidden;
}
#wrapper {
width: 600px;
margin: auto;
}
table {
width: 100%;
border-collapse: collapse;
border-spacing: 0;
border: 1px solid #ddd;
}
table thead {
background-color: #eee;
}
th, td {
padding: 6px 4px;
color: #333;
}
th {
font-weight: bold;
text-align: right;
padding-right: 6px;
}
table tbody tr:hover {
background-color: #f9f9f9;
}
table tbody th {
border-bottom: 1px solid #ddd;
}
table tbody td {
font-weight: normal;
vertical-align: middle;
text-align: left;
font-size: 12px;
border-bottom: 1px solid #ddd;
border-left: 1px solid #ddd;
}
input {
margin: 0;
}
input[type="checkbox"] {
display: inline-block;
vertical-align: middle;
margin: 0 5px 0 0;
}