1/*
2 *  pgn4web javascript chessboard
3 *  copyright (C) 2009-2014 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: black;
23  border-width: 3px;
24  box-shadow: 0px 0px 15px #AAAAAA;
25}
26
27.pieceImage {
28  width: 24px;
29  height: 24px;
30}
31
32.whiteSquare,
33.blackSquare,
34.highlightWhiteSquare,
35.highlightBlackSquare {
36  width: 28px;
37  height: 28px;
38}
39
40.whiteSquare,
41.highlightWhiteSquare {
42  background: #EFF4EC;
43}
44
45.blackSquare,
46.highlightBlackSquare {
47  background: #C6CEC3;
48}
49
50.highlightWhiteSquare,
51.highlightBlackSquare {
52  background: #DAF4D7;
53}
54
55.selectControl {
56/* a "width" attribute here must use the !important flag to override default settings */
57}
58
59.optionSelectControl {
60}
61
62.buttonControlPlay,
63.buttonControlStop,
64.buttonControl {
65/* a "width" attribute here must use the !important flag to override default settings */
66}
67
68.buttonControlSpace {
69/* a "width" attribute here must use the !important flag to override default settings */
70}
71
72.searchPgnButton {
73/* a "width" attribute here must use the !important flag to override default settings */
74}
75
76.searchPgnExpression {
77/* a "width" attribute here must use the !important flag to override default settings */
78}
79
80.move,
81.variation {
82  font-weight: normal;
83  text-decoration: none;
84}
85
86a.move,
87a.variation,
88.commentMove {
89  white-space: nowrap;
90}
91
92.move {
93  color: black;
94}
95
96.comment,
97.variation {
98  color: gray;
99}
100
101.moveOn,
102.variationOn {
103  background: #DAF4D7;
104}
105
106