-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
121 lines (101 loc) · 1.74 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
121
body {
font-family: 'Open Sans', sans-serif;
line-height: 1.75em;
background-color: #222;
color: #fff;
}
.collapsible {
cursor: pointer;
display: flex;
background-color: #25337b;
border-radius: 10px;
color: #fff;
cursor: pointer;
padding: 10px;
margin-top: 2px;
margin-bottom: 5px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-weight: bolder;
}
.active, .collapsible:hover {
background-color: #b88728;
}
.content {
padding: 0 20px 20px 20px;
display: none;
overflow: hidden;
background-color: #222;
}
.highlight {
background-color: yellow;
color: #18181b;
border-color: #18181b;
}
.search {
margin-top: 5px;
margin-bottom: 5px;
padding: 5px;
border-radius: 10px;
}
.icon {
width: 20px;
vertical-align: bottom;
margin-right: 4px;
}
.command {
font-family: 'Courier New', Courier, monospace;
}
.code {
font-family: 'Courier New', Courier, monospace;
background: #777;
color: white;
padding: 2px;
}
table {
margin-top: 10px;
margin-bottom: 10px;
}
thead {
background-color: #af2512;
color: white;
text-align: left;
text-transform: uppercase;
}
thead th {
border: 1px solid #18181b;
padding: 5px;
}
tbody td {
padding: 5px;
border: 1px solid #18181b;
vertical-align: top;
}
tbody tr:nth-child(odd) {
background-color: #333;
}
tbody tr:nth-child(even) {
background-color: #666;
}
.arrow {
display: inline-block;
margin-right: 8px;
transition: transform 0.3s;
}
.active .arrow {
transform: rotate(90deg);
}
a:link {
color: lightblue;
}
a:visited {
color: lightblue;
}
a:hover {
color: #b88728;
}
a:active {
color: #b88728;
}