-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.css
199 lines (168 loc) · 3.69 KB
/
main.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
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
196
197
198
/*==============================================================================
* Main documentation style sheet for the HTMLTTChess package
*
* Copyright (C) 2007-2016 Michael Peeters <https://github.com/xeyownt>
*
* This file is part of the HTMLTTChess package
* <https://github.com/xeyownt/htmlttchess>.
*
* HTMLTTChess is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* HTMLTTChess is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*==============================================================================
*/
@font-face {
font-family: 'Chess Merida Unicode';
src: url(chess_merida_unicode.ttf);
}
#leftpane {
clear: left;
float: left;
width: 10.5em;
margin-top: 0ex;
margin-right: 1ex;
margin-bottom: 0;
margin-left: 1ex;
padding: 0 0 0 0;
}
#leftpane p, #leftpane li {
font-size: 0.8em;
text-align: justify;
}
#leftpane ul {
margin: 0;
padding: 0 1em;
}
#leftpane h2 {
font-size: 1em;
font-weight:bold;
border-bottom: #5A87C3 2px dotted;
color: #5A87C3;
}
#content {
text-align: justify;
margin: 0 0 0 12em;
padding: 0 4% 0 4%;
border-left: 2px solid #007664;
}
body {
font-family: sans-serif;
}
#content h1, #content h2, #content div.footnote {
margin-left: -3%;
}
#content h1 {
color: #007664;
border-bottom: #007664 solid 2px;
}
#content h2{
font-family: arial, helvetica, verdana;
color: #5A87C3;
border-bottom: #5A87C3 dotted 2px;
}
#content h3{
color: #CC0057;
border-bottom: #CC0057 solid 1px;
}
#content h4{
color: black;
font-weight: bold;
text-decoration: underline;
}
#content p, #content li {
text-align: justify;
}
#content li {
margin: 0.2em 0em;
}
#content pre {
color: green;
white-space: pre;
font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
font-size: 0.8em;
border: red dotted 1px;
margin: 0% 5%;
padding: 10px 10px;
overflow: auto;
}
#content table.table1 {
margin-left: 5%;
border: none;
}
#content table.table1 td {
border: none;
}
#content table.table2 {
border-collapse: collapse;
border: hidden;
margin-left: 5%;
}
#content table.table2 td, #content table.table2 th {
border: #CC0057 1px solid;
padding: 10px 10px;
}
#content table.table2 th {
font-weight: bold;
}
#content table.keymap {
border-collapse: collapse;
border: hidden;
margin-left: 5%;
empty-cells: show;
}
#content table.keymap .new {
background-color: #FFC;
}
#content table.keymap td.c {
border: #CC0057 1px solid;
border-right: none;
font: 1.4em "Chess Merida Unicode";
color: black;
padding: 2px 5px 2px 10px
}
#content table.keymap td {
border: #CC0057 1px solid;
border-left: none;
font-family: monospace;
color: blue;
padding: 2px 10px 2px 5px;
text-align: center;
}
#content table.keymap th {
border: #CC0057 1px solid;
text-align: left;
padding: 2px 5px;
}
#content code {
font-family: monospace;
background-color: #EEE;
font-size: 1em;
}
#content code.kw {
font-weight: bold;
}
#content var {
font-style: italic;
font-weight: bold;
}
#content em {
color: #CC0057;
font-style: italic;
font-weight: bold;
}
#footnote {
clear: left;
border-top: #007664 2px solid;
margin-top: 20px;
}