1/*
2 *  pgn4web javascript chessboard
3 *  copyright (C) 2009-2013 Paolo Casaschi
4 *  see README file and http://pgn4web.casaschi.net
5 *  for credits, license and more details
6 */
7
8html,
9body {
10  margin: 0px;
11  padding: 0px;
12}
13
14body {
15  font-family: sans-serif;
16  font-size: 14px;
17  color: black;
18  background: white;
19}
20
21a.gamelist,
22a.gamelistselected {
23  display: inline-block;
24  color: black;
25  font-size: 13px;
26  font-weight: bold;
27  line-height: 20px;
28  text-decoration: none;
29  white-space: pre;
30  padding-top: 3px;
31  padding-bottom: 3px;
32}
33
34.boardTable {
35  width: 372px;
36  height: 372px;
37  border-style: outset;
38  border-color: #DAE1D7;
39  border-width: 2px;
40}
41
42.pieceImage {
43  width: 36px;
44  height: 36px;
45}
46
47.whiteSquare,
48.blackSquare,
49.highlightWhiteSquare,
50.highlightBlackSquare {
51  width: 42px;
52  height: 42px;
53  border-width: 2px;
54  border-style: solid;
55}
56
57.whiteSquare,
58.highlightWhiteSquare {
59  background: #EFF4EC;
60  border-color: #EFF4EC;
61}
62
63.blackSquare,
64.highlightBlackSquare {
65  background: #C6CEC3;
66  border-color: #C6CEC3;
67}
68
69.highlightWhiteSquare,
70.highlightBlackSquare {
71  border-style: inset;
72}
73
74.selectControl {
75/* a "width" attribute here must use the !important flag to override default settings */
76}
77
78.optionSelectControl {
79}
80
81.buttonControlPlay,
82.buttonControlStop,
83.buttonControl {
84/* a "width" attribute here must use the !important flag to override default settings */
85}
86
87.buttonControlSpace {
88/* a "width" attribute here must use the !important flag to override default settings */
89}
90
91.searchPgnButton {
92/* a "width" attribute here must use the !important flag to override default settings */
93}
94
95.searchPgnExpression {
96/* a "width" attribute here must use the !important flag to override default settings */
97}
98
99.move,
100.variation {
101  text-decoration: none;
102}
103
104a.move,
105a.variation,
106.commentMove {
107  white-space: nowrap;
108}
109
110.move {
111  color: black;
112}
113
114.comment,
115.variation {
116  color: gray;
117}
118
119a.variation {
120  color: gray;
121}
122
123.moveOn,
124.variationOn {
125  background: #DAE1D7;
126}
127
128