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  color: black;
17  background: white;
18}
19
20.boardTable {
21  border-style: double;
22  border-color: #c9ad6f;
23  border-width: 3px;
24  background-color: #f2d798;
25  width: 246px;
26  height: 246px;
27}
28
29.pieceImage {
30  width: 24px;
31  height: 24px;
32}
33
34.whiteSquare,
35.blackSquare,
36.highlightWhiteSquare,
37.highlightBlackSquare {
38  width: 26px;
39  height: 26px;
40  border-style: solid;
41  border-width: 2px;
42}
43
44.whiteSquare,
45.highlightWhiteSquare {
46  border-color: #f2d798;
47  background: #f2d798;
48}
49
50.blackSquare,
51.highlightBlackSquare {
52  border-color: #c9ad6f;
53  background: #c9ad6f;
54}
55
56.highlightWhiteSquare,
57.highlightBlackSquare {
58  border-color: yellow;
59}
60
61.selectControl {
62/* a "width" attribute here must use the !important flag to override default settings */
63}
64
65.optionSelectControl {
66}
67
68.buttonControlPlay,
69.buttonControlStop,
70.buttonControl {
71/* a "width" attribute here must use the !important flag to override default settings */
72}
73
74.buttonControlSpace {
75/* a "width" attribute here must use the !important flag to override default settings */
76}
77
78.searchPgnButton {
79/* a "width" attribute here must use the !important flag to override default settings */
80}
81
82.searchPgnExpression {
83/* a "width" attribute here must use the !important flag to override default settings */
84}
85
86.move,
87.comment,
88.variation {
89  font-weight: normal;
90  font-size: 14px;
91  text-decoration: none;
92}
93
94a.move,
95a.variation,
96.commentMove {
97  white-space: nowrap;
98}
99
100.move {
101  color: black;
102}
103
104.comment,
105.variation {
106  color: #444444;
107}
108
109a.variation {
110  color: #444444;
111}
112
113.moveOn,
114.variationOn {
115  background: yellow;
116}
117
118