-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (53 loc) · 887 Bytes
/
Copy pathstyle.css
File metadata and controls
62 lines (53 loc) · 887 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
58
59
60
61
62
body {
font-family: "Verdana";
display: flex;
margin: 0;
}
#leftPanel {
overflow-y: auto;
overflow-x: hidden;
padding-right: 8px;
}
#details {
float: right;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
width: 20%;
margin-top: 128px;
right: 8px;
position: fixed;
}
#bytes {
flex-grow: 1;
}
code {
font-family: "Cascadia Code", "CaskaydiaCove Nerd Font Mono", monospace;
}
.fullScroll {
height: 100vh;
overflow-y: auto;
}
#rightPanel {
position: absolute;
top: 0;
right: 14px;
border: 0;
}
.detail {
border-width: 1px;
border-style: solid;
border-color: black;
margin-right: 10px;
}
.error {
border-width: 1px;
border-style: solid;
border-color: red;
margin: 10px;
}
ul {
list-style-type: none;
padding-inline-start: 10px;
line-height: 150%;
}