-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
119 lines (111 loc) · 1.67 KB
/
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
html, body {
padding: 0;
margin: 0;
overflow: auto;
background-color: #f7df1e;
display: flex;
flex-direction: column;
}
h1, h2 {
margin: 0;
}
label {
white-space: nowrap;
}
fieldset {
border: none;
padding: 0;
margin: 0;
margin-bottom: 5px;
}
legend {
font-weight: bold;
margin-bottom: 5px;
}
body {
font-family: sans-serif;
padding: 10px;
display: flex;
flex-direction: column;
}
main {
display: flex;
flex-direction: column;
flex-grow: 1;
}
textarea {
font-family: monospace;
display: block;
flex-grow: 1;
border: 1px solid black;
}
.CodeMirror {
flex-grow: 1;
border: 1px solid black;
}
textarea:disabled {
border: 1px solid black;
color: black;
}
#input-section, #output-section {
display: flex;
flex-direction: column;
flex-grow: 1;
flex-shrink: 1;
}
#output {
flex-grow: 1;
min-height: 200px;
background-color: white;
border: 1px solid black;
font-family: monospace;
white-space: pre-wrap;
}
#output > div {
padding-left: 0.3em;
}
[class*="log"] {
border-bottom: 1px solid black;
}
.log-warn {
background-color: yellow;
}
.log-debug {}
.log-error {
background-color: #FF000070;
}
#features {
margin: 0;
padding: 0;
list-style: none;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
label {
margin-right: 1ex;
margin-bottom: 5px;
}
#github {
display: block;
position: absolute;
top: 0;
right: 0;
width: 149px;
height: 149px;
background-image: url('./github_ribbon.png');
}
@media (min-width: 800px) {
html, body {
height: 100%;
}
main {
flex-direction: row;
}
main > *:not(:first-child) {
margin-left: 10px;
}
#features {
flex-wrap: wrap;
}
}