-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
59 lines (50 loc) · 812 Bytes
/
app.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
#app, #code {
float: left;
margin: 0 2em 2em 0;
}
#app .container {
position: relative;
border: 2px solid #ccc;
width: 600px;
height: 500px;
}
#app-content {
position: relative;
z-index: 10;
background: transparent;
font-family: Arial, sans-serif;
}
#app canvas {
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
#editor textarea, #compiled textarea {
margin: 0 0 1em;
border: 2px solid #ccc;
display: block;
}
#compiled textarea {
display: block;
background-color: #eee;
margin-top: 1em;
}
#code textarea, .console {
font-family: monospace;
font-size: 1.1em;
}
.console {
background-color: #eee;
border: 2px solid #ccc;
margin-top: 1em;
width: 500px;
color: #555;
}
.console > p {
margin: 0.5em;
}
footer {
font-size: 0.9em;
clear: both;
}