blob: a3fa8b8efa29c212a43d7c96c943058d14a0662c (
plain)
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
|
body {
padding: 0 16px;
font-family: 'Roboto', sans-serif;
width: 100%;
box-sizing: border-box;
}
.app-container {
width: 500px;
max-width: 100%;
}
.toolbar {
padding: 4px;
display: flex;
background-color: #ddd;
box-sizing: border-box;
width: 100%;
}
.toolbar > button {
margin-right: 4px;
}
.spacer {
flex: 1;
}
.code-editor {
width: 100%;
max-width: 100%;
height: 300px;
box-sizing: border-box;
border: 1px solid grey;
}
.compiler-output {
width: 500px;
box-sizing: border-box;
padding: 8px 12px;
max-height: 120px;
overflow: auto;
}
.compiler-output pre {
margin: 0;
white-space: pre-line;
}
|