-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglkote.css
More file actions
196 lines (158 loc) · 3.51 KB
/
Copy pathglkote.css
File metadata and controls
196 lines (158 loc) · 3.51 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/* GlkOte stylesheet for Quixe/I7 Template
* Designed by Andrew Plotkin <erkyrath@eblong.com>
* <http://eblong.com/zarf/glk/glkote.html>
* <http://eblong.com/zarf/glulx/quixe/>
*
* This CSS stylesheet is in the public domain. Do whatever you want
* with it.
*/
#windowport {
width: 100%;
height: 100%;
}
#errorpane {
position: absolute;
top: 0px;
width: 100%;
background: #FF4040;
padding-bottom: 3px;
}
#errorcontent {
padding: 8px;
text-align: center;
background: #FFA0A0;
}
#loadingpane {
position: absolute;
width: 100%;
text-align: center;
top: 20%;
}
.WindowFrame {
/* This class provides the default background color of windows. You
can change that, but don't touch the position or margin. */
position: absolute;
margin: 0px;
background: white;
}
.BufferWindow {
overflow: scroll; /* vertical scrollbar is mandatory */
overflow-x: hidden; /* but horizontal scrollbar is forbidden */
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 15px;
line-height: 1.4;
padding: 6px 10px 6px 2px;
}
.BufferLine {
}
.Hidden_Response {
display: none;
}
.GridWindow {
background: #D0D0C0;
overflow: hidden;
font-family: monaco, andale mono, lucidatypewriter, courier, courier new, monospace; /* necessary! */
font-size: 14px;
padding: 6px 10px 6px 10px;
}
.GridLine {
white-space: pre; /* required for spaces to work right */
}
.InvisibleCursor {
/* This provides the padding below the last line of text (and the input
prompt). Without this, they'd be flush against the bottom of the
window, which would be ugly. Do not modify this CSS class. */
position: relative;
padding-bottom: 14px;
}
.MorePrompt {
/* This describes the "More" prompt that flashes in the bottom right corner
of a window when it needs paging. */
font-weight: bold;
position: absolute;
background: #603010;
color: #FFFFCC;
opacity: 0.5;
padding: 2px 6px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
}
.Input {
/* This class mimicks the Style_input class. It also eliminates the
usual decoration of an <input> field, as much as possible. */
border: none;
margin: 0px;
padding: 0px;
outline-width: 0px;
outline-style: none;
background: none;
font-weight: bold;
}
.BufferWindow .Input {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 15px;
}
.GridWindow .Input {
font-family: monaco, andale mono, lucidatypewriter, courier, courier new, monospace; /* necessary! */
font-size: 14px;
}
/* The following are used for image alignment (in buffer windows). */
.ImageMarginLeft {
float: left;
margin-right: 0.5em;
}
.ImageMarginRight {
float: right;
margin-left: 0.5em;
}
.ImageInlineDown {
vertical-align: text-top;
}
.ImageInlineUp {
vertical-align: text-bottom;
}
.ImageInlineCenter {
vertical-align: middle;
}
.FlowBreak {
clear: both;
}
.GraphicsWindow canvas {
background-color: white;
}
/* The following are the standard Glk styles. */
.Style_normal {
}
.Style_emphasized {
font-style: italic;
}
.Style_preformatted {
font-family: monaco, andale mono, lucidatypewriter, courier, courier new, monospace;
}
.Style_header {
font-weight: bold;
}
.BufferWindow .Style_header {
font-size: 17px;
}
.Style_subheader {
font-weight: bold;
}
.Style_alert {
font-weight: bold;
}
.Style_note {
font-style: italic;
}
.Style_blockquote {
background: #FFF0C0;
}
.Style_input {
font-weight: bold;
color: #300000;
}
.Style_user1 {
}
.Style_user2 {
}
/* End of GlkOte default stylesheet. */