1/*
2 *  pgn4web javascript chessboard
3 *  copyright (C) 2009-2015 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: 5px;
16  font-family: sans-serif;
17  font-size: 14px;
18  color: #909090;
19  background: transparent;
20}
21
22a {
23  color: #909090;
24  text-decoration: none;
25}
26
27input, select {
28  -moz-appearance: none;
29  -webkit-appearance: none;
30  border-radius: 0px;
31  color: #909090;
32}
33
34textarea, option {
35  color: #606060;
36}
37
38.boardTable {
39  width: 272px;
40  height: 272px;
41}
42
43.pieceImage {
44  width: 26px;
45  height: 26px;
46}
47
48.whiteSquare,
49.blackSquare,
50.highlightWhiteSquare,
51.highlightBlackSquare {
52  width: 34px;
53  height: 34px;
54  border-style: none;
55}
56
57.whiteSquare,
58.highlightWhiteSquare {
59  background: #E8E8E8;
60}
61
62.blackSquare,
63.highlightBlackSquare {
64  background: #C2C9D1;
65}
66
67.whiteSquare {
68  border-color: #E8E8E8;
69}
70
71.blackSquare {
72  border-color: #C2C9D1;
73}
74
75.highlightWhiteSquare,
76.highlightBlackSquare {
77}
78
79.pgnSubmit,
80.selectControl,
81.buttonControlPlay,
82.buttonControlStop,
83.buttonControl {
84/* a "width" attribute here must use the !important flag to override default settings */
85  font-weight: bold;
86  font-size: 14px;
87  height: 21px;
88  border-style: none;
89  background-color: #E8E8E8;
90  padding: 5px;
91}
92
93.pgnSubmit {
94  text-decoration: none;
95  padding: 2px;
96}
97
98.selectControl {
99/* a "width" attribute here must use the !important flag to override default settings */
100  width: 100% !important;
101}
102
103.optionSelectControl {
104}
105
106.buttonControlSpace {
107/* a "width" attribute here must use the !important flag to override default settings */
108  background-color: #E8E8E8;
109}
110
111.searchPgnButton {
112/* a "width" attribute here must use the !important flag to override default settings */
113}
114
115.searchPgnExpression {
116/* a "width" attribute here must use the !important flag to override default settings */
117}
118
119.move,
120.variation,
121.comment {
122  font-size: 14px;
123}
124
125a.move,
126a.variation,
127.commentMove {
128  white-space: nowrap;
129}
130
131.move {
132}
133
134a.move {
135}
136
137.comment,
138.variation {
139}
140
141a.variation {
142}
143
144.moveOn,
145.variationOn {
146}
147
148.pgnheader {
149  padding-left: 30px;
150  line-height: 21px;
151  font-size: 14px;
152  font-weight: bold;
153  white-space: nowrap;
154}
155
156