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  padding: 10px;
16  font-family: sans-serif;
17  font-size: 16px;
18  color: black;
19  background: white;
20}
21
22a {
23  text-decoration: none;
24  color: black;
25}
26
27ul {
28  margin-bottom: 0px;
29}
30
31.boardTable {
32  border-color: #C4B9A0;
33  border-width: 2px;
34  border-style: outset;
35}
36
37.pieceImage {
38  width: 32px;
39  height: 32px;
40}
41
42.whiteSquare,
43.blackSquare,
44.highlightWhiteSquare,
45.highlightBlackSquare {
46  width: 42px;
47  height: 42px;
48  border-style: solid;
49  border-width: 1px;
50}
51
52.whiteSquare,
53.highlightWhiteSquare {
54  border-color: #EFE6D0;
55  background: #EFE6D0;
56}
57
58.blackSquare,
59.highlightBlackSquare {
60  border-color: #C4B9A0;
61  background: #C4B9A0;
62}
63
64.highlightWhiteSquare,
65.highlightBlackSquare {
66  border-style: inset;
67}
68
69.selectControl {
70/* a "width" attribute here must use the !important flag to override default settings */
71}
72
73.optionSelectControl {
74}
75
76.buttonControlPlay,
77.buttonControlStop,
78.buttonControl {
79/* a "width" attribute here must use the !important flag to override default settings */
80}
81
82.buttonControlSpace {
83/* a "width" attribute here must use the !important flag to override default settings */
84}
85
86.searchPgnButton {
87/* a "width" attribute here must use the !important flag to override default settings */
88}
89
90.searchPgnExpression {
91/* a "width" attribute here must use the !important flag to override default settings */
92}
93
94.move,
95.variation,
96.comment {
97  color: black;
98  font-family: sans-serif;
99  line-height: 1.3em;
100  font-weight: normal;
101  text-decoration: none;
102}
103
104.comment,
105.variation {
106  color: gray;
107}
108
109a.move,
110a.variation,
111.commentMove {
112  white-space: nowrap;
113}
114
115a.variation {
116  color: gray;
117}
118
119.moveOn,
120.variationOn {
121  background: #EFE6D0;
122}
123
124.label {
125  color: black;
126  font-weight: bold;
127  font-size: 16px;
128}
129
130.gameFEN {
131  font-size: 13px;
132  text-align: left;
133}
134
135.gameText {
136  font-size: 13px;
137  text-align: justify;
138}
139
140