-
Notifications
You must be signed in to change notification settings - Fork 17
/
default.css
101 lines (85 loc) · 1.3 KB
/
default.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
* {
margin: 0;
padding: 0;
}
body {
color: black;
background-color: #fdfdfd;
font-family: "Bitsream Vera Sans",Helvetica,Arial,sans-serif;
}
h1 {
background-image: linear-gradient(to bottom right, #125475, #3eb5f0);
color: #eee;
padding: 5px 15px;
font-weight: normal;
font-size: 1.5rem;
}
h2 {
font-size: 0.75rem;
font-weight: normal;
color: #333;
}
textarea, button, select {
border: 1px solid #ccc;
background-color: white;
}
textarea {
font-size: 1.1rem;
width: 99%;
padding: 3px;
}
footer {
text-align: center;
font-size: smaller;
margin-top: 40px;
color: #777;
clear: both;
}
footer a {
color: #00B;
text-decoration: none;
}
input[type="checkbox"] {
vertical-align: auto;
}
label {
vertical-align: top;
font-size: 0.9rem;
padding-right: 5px;
}
#options {
background-color: #eee;
padding: 5px 10px;
margin-bottom: 15px;
}
#input {
margin: 15px auto;
width: 96%;
}
#tree {
display: flex;
align-items: center;
justify-content: center;
}
#tip {
margin-top: 40px;
color: #555;
text-align: center;
font-style: italic;
}
#version {
position: absolute;
right: 2px;
top: 2px;
color: #BBB;
font-size: 0.8em;
}
#parse-error {
color: #666;
height: 0.7em;
font-size: 0.7em;
display: block;
}
#canvas {
cursor: pointer;
}