blob: 0a0eca5d4d918cf3f24999125b8f4be87bb98ff5 (
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
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
|
/* Skeleton Overide */
.clearfix {
clear: both;
}
select {
margin-bottom: 15px;
}
/* Main Styles */
body, html {
border: 0px;
margin: 0px;
padding: 0px;
height: 100%;
position: relative;
width: 100%;
}
#topbar{
min-height: 50px;
background: #4E3419;
}
#selectors {
margin: 15px 0 0 15px;
}
#content {
position: absolute;
top: 200px;
bottom: 20px;
width: 100%;
min-height: 400px;
bottom: 50px;
background: #f5f5f5;
}
#input {
position: absolute;
top: 5px;
bottom: 60px;
left: 15px;
width: 48%;
height: auto;
}
#output {
position: absolute;
top: 5px;
bottom: 60px;
right: 15px;
width: 48%;
height: auto;
}
#input textarea, #output textarea{
position: absolute;
width: 100%;
height: 99%;
font-size: 100%;
font-family: inherit;
}
#execute {
position: absolute;
left: 15px;
bottom: -15px;
}
#bug {
position: absolute;
right: 15px;
bottom: -15px;
}
#credits {
position: absolute;
bottom: -50px;
width: 100%;
height: 50px;
background: #4E3419;
color: #ffffff;
font-family: monospace;
text-align: center;
}
#credits small {
font-size: .6em;
display: block;
}
|