-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathanalysis.css
More file actions
227 lines (191 loc) · 3.48 KB
/
analysis.css
File metadata and controls
227 lines (191 loc) · 3.48 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*
* pgn4web javascript chessboard
* copyright (C) 2009-2014 Paolo Casaschi
* see README file and http://pgn4web.casaschi.net
* for credits, license and more details
*/
@import url("fonts/pgn4web-font-LiberationSans.css");
@import url("fonts/pgn4web-font-ChessSansUsual.css");
html,
body {
margin: 0px;
padding: 0px;
overflow: hidden;
}
body {
font-family: 'pgn4web Liberation Sans', sans-serif;
font-size: 19px;
color: black;
background: white;
}
a {
color: black;
text-decoration: none;
}
div, span {
font-family: 'pgn4web Liberation Sans', sans-serif; /* fixes IE9 body css issue */
}
.analysisheaderDiv {
position: absolute;
top: 0px;
left: 115px; /* 30px boardTable.paddingLeft + 376px boardTable.width - 3px boardTable.borderWidth - 288px gameAnalysisFrame.width */
transition: left 2s;
}
.gameAnalysisFrame {
width: 288px;
height: 380px;
margin-top: 222px; /* 210 header + 3 boardTable.borderWidth + 9 filling */
}
.boardheaderDiv {
position: absolute;
top: 0px;
left: 0px;
padding: 30px;
width: 376px;
overflow: hidden;
}
.headerLine {
overflow: hidden;
white-space: nowrap;
width: 376px;
height: 30px;
font-weight: bold;
font-size: 22px;
line-height: 30px;
text-align: center;
}
.gameNum {
width:188px;
text-align: left;
}
.gameECO {
width:188px;
text-align: right;
}
.gameSiteEventDate {
font-style: italic;
font-weight: normal;
}
.shortRowSpace {
height: 15px;
line-height: 15px;
}
.gameLastMove, .gameNextMove {
font-size: 14px;
line-height: 20px;
white-space: nowrap;
overflow: hidden;
}
.gameList {
}
.gameSelector {
position: relative;
}
.topSpacer {
height: 30px;
}
.gametextresultDiv {
padding-left: 15px;
padding-right: 30px;
margin-left: 436px;
transition: margin-left 2s;
margin-bottom: 30px;
overflow-y: scroll;
overflow-x: hidden;
text-align: justify;
scrollbar-base-color: #FFFFFF;
}
.gameAnnotator {
float: right;
font-style: italic;
}
.boardTable {
width: 376px;
height: 376px;
border-style: solid;
border-color: #808080;
border-width: 3px;
box-shadow: 0px 0px 20px #DDDDDD;
}
.pieceImage {
width: 39px;
height: 39px;
}
.whiteSquare,
.blackSquare,
.highlightWhiteSquare,
.highlightBlackSquare {
width: 45px;
height: 45px;
border-style: solid;
border-width: 1px;
}
.whiteSquare,
.highlightWhiteSquare {
border-color: #FFFFFF;
background: #FFFFFF;
}
.blackSquare,
.highlightBlackSquare {
border-color: #DDDDDD;
background: #DDDDDD;
}
.highlightWhiteSquare,
.highlightBlackSquare {
border-color: #AAAAAA;
border-style: solid;
}
.selectControl {
/* a "width" attribute here must use the !important flag to override default settings */
-webkit-appearance: none;
border-style: solid;
border-color: #AAAAAA;
border-width: 1px;
border-radius: 0;
background: #FFFFFF;
color: gray;
}
.optionSelectControl {
color: black;
}
.move,
.variation,
.comment {
color: black;
line-height: 1.4em;
font-weight: normal;
text-decoration: none;
}
.move,
.variation,
.commentMove {
font-family: 'pgn4web ChessSansUsual', 'pgn4web Liberation Sans', sans-serif;
}
a.move,
a.variation,
.commentMove {
white-space: nowrap;
}
.comment,
.variation {
color: gray !important;
}
a.variation {
color: gray !important;
}
.moveOn,
.variationOn,
a.move:hover,
a.variation:hover {
background: #DDDDDD;
border-radius: 2px;
}
.helpLink {
position: absolute;
bottom: 0px;
right: 2px;
color: lightgray;
}
.helpLink:hover {
color: black;
}