forked from lkesteloot/turbopascal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.css
103 lines (87 loc) · 1.68 KB
/
turbo.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
body {
background-color: #333;
}
@font-face {
/* http://www.dafont.com/nouveau-ibm.font */
font-family: "Nouveau IBM";
src: url("Nouveau_IBM.ttf");
}
#canvas {
width: 640px;
height: 350px;
background-color: black;
display: none;
}
.debug-output {
display: none;
padding: 10px;
background-color: #ccc;
}
#monitor {
margin: 60px auto 0 auto;
padding: 24px 30px;
border-radius: 8px;
background-color: black;
width: 640px;
height: 350px;
}
#screen, #editor {
margin: 0;
padding: 0;
border: 0;
font-family: "Nouveau IBM", monospace;
font-size: 12pt;
/* The font naturally wants 16px here, but the PC had 14px. */
line-height: 14px;
/* The font naturally wants 9px wide characters, but the PC had 8px. */
letter-spacing: -1px;
font-smooth: never;
-webkit-font-smoothing: none;
color: #CCC;
background-color: black;
width: 640px; /* 8x80 */
height: 350px; /* 14x25 */
}
#screen {
overflow: hidden;
}
#editor {
display: none;
/* Prohibit resizing by user. */
resize: none;
}
#editor:focus {
/* Remove blue glow around focused text area. */
outline: 0px none transparent;
-moz-appearance: none;
}
#screen .bold {
color: yellow;
}
#screen .cursor {
border-bottom: 3px solid #888;
}
#screen .cursor.off {
border-bottom: 3px solid black;
}
#belowMenu {
font-family: sans-serif;
font-size: 10pt;
width: 700px;
margin: 10px auto;
}
#closeEditor {
text-align: left;
display: none;
color: #999;
}
#closeEditor a {
color: #999;
}
#attribution {
text-align: right;
color: #111;
}
#attribution a {
color: #111;
}