-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug.css
More file actions
57 lines (53 loc) · 746 Bytes
/
debug.css
File metadata and controls
57 lines (53 loc) · 746 Bytes
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
#notIt, #it:not(:first-of-type) {
display: none;
}
html,
body {
background-color: #00F0;
}
body,
pre {
margin: 0;
padding: 0;
display: grid;
height: 100vh;
font-weight: bold;
font-size: 11px;
}
span.hover {
position: relative;
&.d1 {
outline: 1px solid red;
z-index: 10;
}
&.d2 {
outline: 1px solid #08F;
outline-offset: 1px;
z-index: 9;
}
&.d3 {
outline: 1px solid #07D;
outline-offset: 2px;
z-index: 8;
}
&.d4 {
outline: 1px solid #06B;
outline-offset: 3px;
z-index: 7;
}
&.d5 {
outline: 1px solid #059;
outline-offset: 4px;
z-index: 6;
}
&.d6 {
outline: 1px dashed #047;
outline-offset: 5px;
z-index: 5;
}
&.d7 {
outline: 1px dotted #035;
outline-offset: 6px;
z-index: 4;
}
}