-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
59 lines (49 loc) · 797 Bytes
/
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
body {
margin: 20px auto;
max-width: 1024px;
position: relative;
min-height: 100vh;
}
#messages {
position: fixed;
top: 5px;
max-width: 1024px;
}
#messages > div {
margin: 0.5em 0;
padding: 0.5em;
border-radius: 5px;
}
#msg-error {
background-color: #e58686;
border: 1px solid rgb(255, 67, 67);
}
#msg-progress {
background-color: #8fccfa;
border: 1px solid rgb(68, 68, 255);
}
#grammar {
font-family: monospace;
}
.pure-control-group {
margin: 1em 0;
}
#app {
margin-top: 80px;
position: relative;
}
#output,
#stats {
margin: 1em 0;
padding: 1em;
border: 1px solid #ccc;
background-color: #f9f9f9;
white-space: pre-wrap;
}
#examples button {
display: inline-block;
margin: 0.5em 0.5em;
}
span.generated {
background-color: #9dff1c;
}