-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
120 lines (97 loc) · 1.76 KB
/
style.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
112
113
114
115
116
117
118
119
120
#panel, #panels, #primestatus, #copy {
width: 98%;
background-color: #999999;
margin-left: auto;
margin-right: auto;
}
#panel {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
min-height: 30px;
padding: 5px 5px 0px 5px;
margin-bottom: 0;
list-style-type: none;
}
#panels {
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
padding: 0px 5px 5px 5px;
}
#primestatus, #copy {
border-radius: 5px;
padding: 5px;
margin-top: 5px;
}
#panel li {
width: 20%;
float: left;
text-align: center;
line-height: 20px;
}
#panel a, #panels a {
color: #000000;
}
#panel li a {
display: block;
padding: 5px;
text-decoration: none;
}
#panels > div {
padding: 5px;
border-radius: 5px;
display: none;
}
#panels .active {
display: block;
}
#panels div:first-child {
border-top-left-radius: 0px;
}
#panels div:last-child {
border-top-right-radius: 0px;
}
#panel li.active a, #panels div {
background-color: #efefef;
}
#panel li a:hover {
background-color: #cccccc;
color: #000;
}
#panel li.active a, #panel li a:hover {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
table {
width: 100%;
border: 1px black solid;
border-collapse: collapse;
}
th {
text-align: left;
}
td {
margin-top: 5px;
}
td, th {
border-bottom: 1px solid black;
}
.no-borders td, .no-borders, .example, .example td {
border: none;
}
.example {
border-radius: 5px;
background-color: lightsteelblue;
margin-top: 5px;
}
.example td {
padding: 5px;
color: black;
width: 75%;
word-break: break-all;
}
.example td:first-of-type {
width: 25%;
}
.strike-through {
text-decoration: line-through;
}