-
Notifications
You must be signed in to change notification settings - Fork 25
/
main.css
116 lines (96 loc) · 1.47 KB
/
main.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
* {
box-sizing: border-box;
}
body {
font-size: 16px;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue",
Helvetica, Arial, "Lucida Grande", sans-serif;
margin: 0;
padding: 0;
width: 700px;
}
.table-wrapper {
width: 100%;
overflow-x: auto;
}
table {
border: solid 2px #eee;
margin-bottom: 0.25rem;
width: 100%;
}
th {
background-color: #eee;
}
td,
th {
padding: 0.25rem;
overflow: hidden;
position: relative;
text-overflow: ellipsis;
text-align: left;
vertical-align: top;
white-space: nowrap;
}
ul {
list-style: none;
padding-left: 0;
}
li {
font-family: monospace;
white-space: nowrap;
}
pre {
font-size: 0.75rem;
}
code {
white-space: pre-wrap !important;
}
details {
cursor: default;
margin-bottom: 1rem;
}
summary {
background-color: #87cefa;
outline: none;
padding: 0.25rem;
}
.highlight {
background-color: yellow !important;
}
.imported-script {
background-color: #f5f5f5;
display: inline-block;
margin: 0;
outline: none;
padding: 0;
vertical-align: top;
}
.cache-storage {
background-color: transparent;
}
.preview {
width: 1.5rem;
max-width: 1.5rem;
height: auto;
}
.font-size {
font-size: 0.75rem;
position: absolute;
right: 0.5rem;
}
.smaller {
font-size: 0.75rem;
}
.bigger {
font-size: 1rem;
margin-right: 0.25rem;
}
#font-size {
width: 4rem;
}
#container {
height: 600px;
padding: 0.25rem;
overflow-y: scroll;
overflow-x: hidden;
}