-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
47 lines (42 loc) · 796 Bytes
/
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
html, body {
height: 100%;
width: 100%;
margin: 0;
font-family: Helvetica Neue, Lucida Grande, Segoe UI, Tahoma, sans;
font-size: 16px;
background: #EDEDED;
}
section {
padding: 1em 1em 0;
}
section .buttons-group {
margin-bottom: 1em;
}
section .buttons-group h5 {
margin-top: 0;
margin-bottom: 0.65em;
}
#output {
margin-top: 20px;
box-sizing: border-box;
padding: 5px;
font-size: 12px;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
background: #fff;
border: 1px solid #BEBEBE;
height: 248px;
max-height: 248px;
overflow: auto;
}
#output span.error {
color: red;
}
#output span.data {
color: deepskyblue;
}
#output span.command {
color: blue;
}
video {
display: block;
}