-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (59 loc) · 802 Bytes
/
style.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
body,html { height: 100% }
body {
margin: 0;
padding: 0;
background: #111;
font-size: 100%;
font-family: sans-serif;
overflow: auto;
color: #ccc;
}
header, main, footer {
width: 1024px;
margin: 20px auto;
}
a {
color: #0af;
text-decoration: none;
}
a:hover {
color: #0cf;
}
main {
position: relative;
}
#error {
color: red;
font-size: 1.25rem;
}
h1 {
color: #ccc;
font-size: 2rem;
font-weight: normal;
}
canvas:focus {
outline: none;
}
h2 {
color: #ccc;
font-size: 1.5rem;
font-weight: normal;
}
code {
font-size: 1rem;
box-sizing: border-box;
}
#bytes {
color: #aaa;
font-size: 1rem;
text-align: right;
position: absolute;
width: 100%;
}
#minified {
word-break: break-all;
white-space: pre-wrap;
overflow-wrap: break-word;
}
#source {
}