-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdisplay_stack.css
More file actions
46 lines (33 loc) · 670 Bytes
/
display_stack.css
File metadata and controls
46 lines (33 loc) · 670 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
button {
margin-top: 2em;
margin-left: 0.5em;
height: 1.5em;
font-size: medium;
}
li>pre {
font-family: Lucida Console, Courier, monospace;
font-size: large;
-webkit-user-select: text;
}
#stack_list {
width: calc(100vw - 1em);
height: calc(100vh - 5em);
list-style-type: none;
padding-left: 0;
overflow-x: auto;
overflow-y: auto;
margin: 0.5em;
}
* {
box-sizing: border-box;
margin: 0;
}
li {
width: calc(100vw - 1em);
border-color: black;
border-width: 1px;
border-style: solid;
padding: 0.25em;
font-family: Lucida Console, Courier, monospace;
font-size: large;
}