-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzmach.css
76 lines (65 loc) · 1.15 KB
/
zmach.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
.upperWindow {
font-family: "Monaco", monospace;
white-space: pre;
font-size: 14px;
position: fixed;
z-index: 1;
}
.upperChar {
display: inline-block;
}
.heightKeeper {
visibility: hidden;
}
.textItalic {
font-style: italic;
}
.textBold {
font-weight: bold;
}
.textFixed {
font-family: 'Inconsolata', "Monaco", monospace;
white-space: pre;
font-size: 14px;
}
.lowerWindow {
position: absolute;
padding: 1px;
padding-top: 1em;
font-family: 'PT Serif', "Times New Roman", serif;
font-size: 16px;
white-space: pre-wrap;
/* line-height: 18px;*/
}
.lowerWindow .line {
min-height: 18px;
}
.userinput {
padding: 0;
margin: 0;
font-family: 'PT Serif', "Times New Roman", serif;
font-size: 16px;
display: inline;
border: none;
-webkit-appearance: none;
-moz-appearance: none;
}
.userinput:focus {
outline: none;
}
.error {
position: fixed;
background: white;
color: red;
padding: 5px;
border: 1px solid black;
z-index: 999;
left: 20px;
bottom: 20px;
}
.debug {
position: fixed;
z-index: 999;
right:0;
top:0;
}