forked from getify/getify.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
110 lines (93 loc) · 1.84 KB
/
styles.css
File metadata and controls
110 lines (93 loc) · 1.84 KB
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
table {
font-family: monospace;
border-collapse: collapse;
}
td, th {
white-space: nowrap;
border: 1px solid #666;
padding: 4px 15px;
max-width: 250px;
overflow: hidden;
text-overflow: ellipsis;
cursor: default;
}
th {
background-color: #eee;
}
td.value {
background-color: #eee;
}
tr:hover td {
background-color: #bddcff;
}
.exception, td.exception, tr:hover td.exception {
background-color: #ff6a6a;
}
.wtf, td.wtf, tr:hover td.wtf {
background-color: #fd7;
font-weight: bold;
cursor: not-allowed;
}
.fixedwtf, td.fixedwtf, tr:hover td.fixedwtf {
background-color: #8f5;
cursor: help;
}
table.hideExtended td:nth-child(4), table.hideExtended th:nth-child(4),
table.hideExtended td:nth-child(6), table.hideExtended th:nth-child(6),
table.hideExtended td:nth-child(10), table.hideExtended th:nth-child(10),
table.hideExtended td:nth-child(11), table.hideExtended th:nth-child(11),
table.hideExtended td:nth-child(12), table.hideExtended th:nth-child(12),
table.hideExtended td:nth-child(13), table.hideExtended th:nth-child(13) {
display: none;
}
#controls_holder {
position: relative;
}
#open_controls {
display: inline-block;
text-decoration: none;
color: #000;
font-size: 17px;
font-weight: bold;
}
#open_controls::before {
font-size: 14px;
padding: 5px;
content: "▶";
}
#open_controls.open::before {
font-size: 14px;
padding: 4px;
content: "▼";
}
#controls {
display: none;
padding: 20px 5px;
background-color: #eee;
}
#controls fieldset {
display: inline-block;
}
#calltoaction {
position: absolute;
left: 100px;
top: -15px;
text-align: right;
padding: 10px;
max-width: 100px;
background-color: #8b8b00;
color: white;
font-weight: bold;
cursor: pointer;
}
#legend {
float: left;
padding: 10px;
border: 1px solid #000;
margin-right: 15px;
}
#legend > div {
padding:5px;
margin: 5px 0px;
cursor: default;
}