-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
113 lines (111 loc) · 1.73 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
#sidebar {
position: fixed;
}
nav {
padding-left: 20px;
margin-top: 20px;
margin-bottom: 20px;
}
nav .nav > li > a {
color: #999;
padding: 0 20px;
font-size: 13px;
font-weight: 400;
border-left: solid transparent 2px;
}
nav .nav .nav > li > a {
padding: 0 20px 0 30px;
font-size: 11px;
}
nav .nav > .active > a,
nav .nav > li > a:hover,
nav .nav > li > a:focus {
color: #090;
text-decoration: none;
background-color: #efe;
border-left: solid #090 2px;
font-weight: 700;
}
nav .nav .nav > .active > a,
nav .nav .nav > li > a:hover,
nav .nav .nav > li > a:focus {
font-weight: 500;
}
nav .nav ul.nav {
display: none;
}
nav .nav > .active > ul.nav {
display: block;
}
#packet-types > section > h3 {
display: none;
}
body {
color: #555;
}
h1 {
color: #000;
}
h2 {
color: #333;
border-bottom: solid #090 2px;
}
h3 {
color: #555;
}
.pkt-props {
margin: -0.5em 0 1em 2em;
font-variant: small-caps;
}
.pkt-props code {
font-variant: normal;
}
table {
margin-left: 1em;
margin-bottom: 2em;
}
table thead th {
color: #999;
border-bottom: solid #999 1px;
font-size: 9pt;
font-weight: normal;
font-style: italic;
vertical-align: bottom;
padding-right: 1em;
}
table td {
padding: 0.1em 0.3em;
vertical-align: top;
}
code {
color: #090;
background-color: #efe;
}
dd {
margin-left: 2.5em;
}
.removed {
text-decoration: line-through;
}
section#packet-types section section {
border-top: 2px solid #4c4;
}
#packet-sort {
font-size: 9pt;
margin-left: 3em;
}
label {
font-weight: normal;
padding: 0 0.5em;
cursor: pointer;
}
#packet-sort input {
cursor: pointer;
}
.hue-box {
display: inline-block;
vertical-align: text-top;
width: 1em;
height: 1em;
border: solid 1px #000;
}