-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (103 loc) · 1.52 KB
/
style.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
body {
font-family: 'Roboto Slab', serif;
margin: 0px auto;
}
#wrapper {
background-color: #DED4B9;
height: 100%;
width: 100%;
padding-top: 5%;
position: absolute;
}
#container {
position: relative;
width: 80%;
height: 80%;
border: 10px solid #46433A;
border-radius: 30px;
margin: 0px auto;
}
#board {
width: 85%;
height: 85%;
margin: 0px auto;
margin-top: 7.5%;
margin-bottom: 7.5%;
margin-left: 7.5%;
margin-right: 7.5%;
z-index: 1;
position: relative;
float: left;
}
.half {
float: left;
width: 50%;
position: relative;
}
#gameLog {
float: left;
border-left: 2px solid #46433A;
width: 80%;
height: 80%;
margin-top: 10%;
margin-bottom: 10%;
padding-left: 3%;
}
.gameSpot {
background-color: #DED4B9;
width: 30%;
height: 30%;
float: left;
margin: 5px auto;
margin-right: 1%;
margin-left: 1%;
z-index: 3;
position: relative;
}
.gameSpot:hover {
background-color: #CE534D;
}
#boardbg {
background-color: #46433A;
z-index: 2;
width: 92%;
height: 92%;
margin: 0px auto;
margin-left: 2%;
margin-top: 3%;
position: relative;
}
/*.vlines {
border-right: 10px solid #46433A;
z-index: 2;
height: 96%;
display: inline-block;
}
#vLine1 {
width: 31%;
}
#vLine2 {
width: 29%;
}*/
.open {
background-color: blue;
width: 30%;
height: 30%;
float: left;
margin: 5px auto;
margin-right: 1%;
margin-left: 1%;
z-index: 3;
position: relative;
}
#closed {
background-color: red;
width: 30%;
height: 30%;
float: left;
margin: 5px auto;
margin-right: 1%;
margin-left: 1%;
z-index: 3;
position: relative;
}