-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (44 loc) · 946 Bytes
/
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
body {
text-align: center;
background-color: #fff;
font-family: lato, "myriad pro", helvetica, sans-serif; }
#content {
margin: 0 auto;
width: 80%; }
#bingo_table {
margin: 0 auto;
font-weight: 700;
text-align: center;
vertical-align: middle; }
#bingo_table td {
width: 60px;
height: 60px;
border-radius: 30px;
border: 1px solid #000; }
#bingo_table td:hover {
cursor: pointer;
background: #cacaca; }
#bingo_table td.picked {
background: black;
color: white; }
#bingo_table td.picked:hover {
background: gray; }
#result_area {
position: relative;
width: 100px;
height: 100px;
margin: 20px auto;
background: black;
color: white;
border-radius: 50px;
font-size: 48px;
text-align: center; }
#result {
position: absolute;
display: block;
height: 60px;
width: 60px;
margin: -30px 0 0 -30px;
top: 50%;
left: 50%; }
/*# sourceMappingURL=style.css.map */