-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
92 lines (79 loc) · 1.52 KB
/
styles.css
File metadata and controls
92 lines (79 loc) · 1.52 KB
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
#header-row {
margin-top: 10px;
margin-bottom: 20px;
height: 120px;
background: #161a1d;
text-align: center;
font-size: 80px;
color: azure;
padding-top: 16px;
padding-left: 16px;
}
#game-notifications {
-webkit-font-smoothing: antialiased;
box-sizing: border-box;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px 0px;
box-sizing: border-box;
background-color: #e69999;
font-family: Lato, Arial, serif;
font-size: 16px;
font-weight: bold;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
position: relative;
margin-left: 20px;
margin-right: 20px;
}
#game-container {
text-align: center;
}
#game-status {
margin: 30px auto;
}
#board-container {
text-align: center;
}
/*will need to adjust height/width depending on board size*/
table {
margin: 50px auto 20px auto;
table-layout: fixed;
width: 560px;
height: 560px;
z-index: 1000
}
#board-header-row {
width: 560px;
}
/*will need to adjust height depending on board size*/
.header-cell {
border-style: none;
border-color: #FFF;
text-align: center;
}
tr {
height: 14.285714285%;
}
td {
border-style: solid;
border-color: #161a1d;
}
.board-cell {
text-align: center;
}
.board-piece {
z-index: -5000;
}
#reset-button {
border-radius: 2px;
border-style: solid;
width: 500px;
height: 30px;
background-color: #161a1d;
color: azure;
font-family: Lato, Arial, serif;
font-size: 18px;
font-weight: bold;
cursor: pointer;
}