-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzc.css
113 lines (94 loc) · 1.44 KB
/
zc.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
.stack-item {
color: rgb(0,205,205);
}
.top-item {
color: white;
}
.error {
color: rgb(255,255,0);
font-size: 16pt;
}
.notice {
color: rgb(0,205,0);
font-size: 16pt;
}
.history {
color: rgb(127,127,127);
font-size: 16pt;
}
.label {
color: rgb(127,127,127);
}
.unit {
color: rgb(127,127,127);
}
@font-face {
font-family: "Inconsolata";
src: url("Inconsolata-Regular.ttf")
}
html, body {
height: 100%;
margin: 0;
background-color: black;
color: white;
font-size: 32pt;
font-family: "Inconsolata";
}
#main {
display: flex;
flex-flow: column;
height: 100%;
}
#output {
display: flex;
flex-flow: row;
align-items: flex-end;
height: 100%;
}
#output-panel {
flex: 1 1 auto;
height: 100%;
overflow-y: auto;
}
#footer-panel {
flex: 1 1 auto;
}
#footer {
padding: 25px;
display: flex;
flex-flow: row;
}
.input {
font-family: "Inconsolata";
font-size: 32pt;
color: white;
background-color: #333;
border: 0px;
padding-left: 10px;
width: 100%;
margin-left: 20px;
}
.input:focus {
background-color: #555;
border: 0px;
outline: none;
}
.hidden {
display: none;
}
ul {
list-style-type: none;
margin: 0;
}
#popup {
flex: 1 1 auto;
color: #aaa;
font-size: 24pt;
margin: 10px;
}
#auto {
margin-left: 10px;
font-size: 24pt;
background-color: #ddd;
border: none;
}