-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathanticrux.css
164 lines (136 loc) · 3.58 KB
/
anticrux.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
AntiCrux - Suicide chess engine acting as desktop engine, web page, mobile application, Internet chess server and library
Copyright (C) 2016-2018, ecrucru
https://github.com/ecrucru/anticrux/
http://ecrucru.free.fr/?page=anticrux
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
@license
*/
/*===== General styles =====*/
.AntiCrux-background-black {
background-color:black;
}
.AntiCrux-background-white {
background-color:white;
}
.AntiCrux-hSizer {
overflow:hidden;
}
.AntiCrux-hSizer DIV.AntiCrux-vSizer {
float:left;
padding:5px;
}
.AntiCrux-leftMargin {
margin-left:15px;
}
.AntiCrux-big {
font-size:20pt;
}
.AntiCrux-notice {
padding:5px;
border:1px solid black;
background-color:#FFFFC0;
color:black;
text-shadow:none;
}
/*===== Particular styles =====*/
.AntiCrux-table TH {
border-bottom:1px solid #D6D6D6;
}
.AntiCrux-table TR {
text-shadow:none;
}
/*===== Board =====*/
.AntiCrux-board-promotion {
font-size:24pt;
}
.AntiCrux-board {
display:block;
box-shadow:1px 1px 5px 1px black;
}
.AntiCrux-board-coordinates-vertical {
float:left;
width:20px;
line-height:50px;
vertical-align:middle;
text-align:center;
font-weight:bold;
}
.AntiCrux-board-coordinates-horizontal {
float:left;
width:50px;
line-height:20px;
vertical-align:middle;
text-align:center;
font-weight:bold;
}
.AntiCrux-board-coordinates-corner {
float:left;
height:20px;
width:20px;
background-color:#A6ABD6;
position:relative;
}
.AntiCrux-board-coordinates-corner-player {
position:absolute;
left:4px;
top:4px;
width:10px;
height:10px;
border:1px solid black;
}
.AntiCrux-board-line {
overflow:hidden;
}
.AntiCrux-board-cell-0 {
float:left;
background-color:#A6ABD6;
width:50px;
height:50px;
text-align:center;
font-weight:bold;
color:yellow;
}
.AntiCrux-board-cell-1 {
float:left;
background-color:#F0F0F0;
width:50px;
height:50px;
text-align:center;
vertical-align:middle;
font-weight:bold;
color:red;
}
.AntiCrux-board-cell-hl {
float:left;
background-color:#00FF00;
width:50px;
height:50px;
text-align:center;
vertical-align:middle;
}
.AntiCrux-board-piece-241 { background-image:url(images/piece_241.png); }
.AntiCrux-board-piece-242 { background-image:url(images/piece_242.png); }
.AntiCrux-board-piece-243 { background-image:url(images/piece_243.png); }
.AntiCrux-board-piece-244 { background-image:url(images/piece_244.png); }
.AntiCrux-board-piece-245 { background-image:url(images/piece_245.png); }
.AntiCrux-board-piece-246 { background-image:url(images/piece_246.png); }
.AntiCrux-board-piece-161 { background-image:url(images/piece_161.png); }
.AntiCrux-board-piece-162 { background-image:url(images/piece_162.png); }
.AntiCrux-board-piece-163 { background-image:url(images/piece_163.png); }
.AntiCrux-board-piece-164 { background-image:url(images/piece_164.png); }
.AntiCrux-board-piece-165 { background-image:url(images/piece_165.png); }
.AntiCrux-board-piece-166 { background-image:url(images/piece_166.png); }
/*===== History =====*/
.AntiCrux-history-item {
cursor:pointer;
}