-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.css
86 lines (70 loc) · 962 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
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
* {
box-sizing: border-box;
}
body {
font-size: 14px;
color: #333333;
}
p {
margin: 24px 0;
line-height: 1.5;
}
form {
display: flex;
align-items: center;
justify-content: left;
margin: 24px -10px;
}
fieldset {
margin: 0 10px;
padding: 0;
border: 0;
}
table {
border: 1px solid #cccccc;
border-width: 0 1px 1px;
border-collapse: collapse;
}
thead {
font-weight: 500;
}
tr {
border-top: 1px solid #cccccc;
}
thead tr {
background: #eeeeee;
}
tbody tr:nth-of-type(even) {
background: #fafafa;
}
td {
padding: 10px;
}
tbody td:nth-of-type(3),
tbody td:nth-of-type(4) {
text-align: center;
}
.btn,
.tab {
display: inline-block;
padding: 10px;
border: 1px solid #999999;
background: #cccccc;
cursor: pointer;
transition: 200ms;
}
.tab {
opacity: 0.6;
}
.btn:hover,
.tab:hover,
.tab.active {
opacity: 1;
}
.tab-pane {
display: none;
margin: 24px 0;
}
.tab-pane.active {
display: block;
}