-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
80 lines (63 loc) · 1.01 KB
/
main.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
.container {
width:300px;
margin:0 auto;
font-family: Arial, Helvetica, sans-serif;
}
.title {
}
.playerCount {
line-height: 10px;
font-weight:bold;
}
.playerCount span {
font-weight:normal;
}
#grid {
width: 320px;
display: block;
background-color: purple;
}
.grid-cell {
width: 80px;
height: 80px;
background-color:green;
position: relative;
float: left;
}
.grid-cell-dot, .grid-cell-counter{
border-radius: 50%;
position: absolute;
}
.grid-cell-dot {
width: 25px;
height: 25px;
background-color: pink;
left: 27.5px;
top: 27.5px;
z-index: 1;
}
.grid-cell-counter {
width: 50px;
height: 50px;
left: 15px;
top: 15px;
z-index: 2;
}
.grid-cell-dot-empty {
z-index: 3;
}
.grid-cell-counter-active {
transition: transform 0.2s ease-in-out;
}
.grid-cell-counter-active:hover {
transform: scale(1.1, 1.1);
}
.grid-cell-counter-chosen {
border:3px solid #ffffff;
}
.grid-cell-counter-red {
background-color: red;
}
.grid-cell-counter-blue {
background-color: blue;
}