-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.css
80 lines (73 loc) · 1.34 KB
/
test.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
body {
background: #e8e7de;
font-family: 'Montserrat', sans-serif;
}
.board {
width: 640px;
height: 640px;
margin: 20px;
border: 10px solid #000;
border-radius: 4px;
background: #e59110;
box-shadow: 5px 5px 8px #bebdb6,
-5px -5px 8px #ffffff;
}
.black {
float: left;
width: 80px;
height: 80px;
background-color: #e59110;
font-size:50px;
text-align:center;
display: table-cell;
vertical-align:middle;
}
.white {
float: left;
width: 80px;
height: 80px;
background-color: #ffcfb6;
font-size:50px;
text-align:center;
display: table-cell;
vertical-align:middle;
}
.nums {
float: left;
width: 80px;
height: 80px;
background-color: #ffcfb6;
font-size:50px;
text-align:center;
display: table-cell;
vertical-align:middle;
}
.empty {
display: flex;
justify-content: center;
}
/** {*/
/* margin: 0;*/
/* padding: 0;*/
/*}*/
/*table {*/
/* border-spacing: 0;*/
/* border: 0;*/
/* margin: 20px 20px;*/
/*}*/
/*tr:not(:last-child) td:not(:first-child) {*/
/* border: 1px solid black;*/
/*}*/
/*.black {*/
/* width: 40px;*/
/* height: 40px;*/
/* background: black;*/
/*}*/
/*.white {*/
/* width: 40px;*/
/* height: 40px;*/
/* background: white;*/
/*}*/
/*.letter {*/
/* text-align: center;*/
/*}*/