-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
90 lines (77 loc) · 1.25 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
body {
font-family: Verdana, Tahoma, Geneva, sans-serif;
line-height: 140%;
padding: 1rem 3rem;
}
#program, #macro {
font-size: 250%;
outline: none;
}
h1, .help {
color: #999;
}
form {
margin-bottom: 3cm;
}
#program_result, #macro_result {
list-style: none;
padding-left: 0;
font-size: 150%;
}
#program_error, #macro_error {
display: none;
color: red;
position: absolute;
margin-top: -1rem;
}
#options {
visibility: hidden;
background: #ddd;
padding: 1rem;
width: 15rem;
position: absolute;
right: 0;
top: 0;
bottom: 0;
}
#options h3 {
margin-top: 1.5rem;
margin-bottom: 0.5rem;
}
#options p {
margin: 0.5rem 0;
}
/* The visual AST displays. */
.graph {
float: right;
overflow: visible;
width: 20%;
max-width: 500px;
height: 500px;
}
#show_options {
position: absolute;
right: 0;
top: 0;
border: none;
background: transparent;
padding: 0.5rem 1rem 1rem 1rem;
font-size: 200%;
}
#share_link {
width: 100%;
margin-top: 0;
}
.active_abs {
color : #0000CD;
}
.active_subst {
color : #B31B1B;
}
#macrolist {
overflow: auto;
list-style: none;
padding-left: 0;
font-size: 150%;
height: 500px;
}