forked from bridmoynihan/OldProjectRepo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathboard.css
More file actions
44 lines (37 loc) · 611 Bytes
/
board.css
File metadata and controls
44 lines (37 loc) · 611 Bytes
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
body{
display:flex;
align-items:center;
justify-content:center;
background-color: #ddf4df;
}
table{
border: 4px solid black;
text-align: center;
table-layout:fixed;
border-collapse: collapse;
width:700px;
height:700px;
}
#board {
background-image: url('board.jpg');
background-size: 700px 700px;
}
#hor{
/*border: 1px solid black; */
}
#ver{
/*border: 1px solid black;*/
}
#edge{
/*border: 1px solid black; */
border: none;
height: 93px !important;
width: 93px !important;
padding: 0px;
margin: 0px;
}
.player{
width: 20px;
height:20px;
}
}