-
Notifications
You must be signed in to change notification settings - Fork 3
/
bingo.css
71 lines (55 loc) · 1.04 KB
/
bingo.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
#bingo {
border:3px #aaa solid;
}
#bingo tr td {
cursor:pointer;
width:120px;
height:120px;
text-align:center;
border:1px #666 solid;
background: #FFFFFF;
-moz-user-select : none;
-khtml-user-select : none;
-webkit-user-select : none;
-o-user-select : none;
user-select : none;
}
#bingo tr td { background:#E1E1E1; }
#tip {
background: #E1E1E1;
border-radius: 5px;
padding: 2px;
margin-top: 10px;
border: 10px;
height: 50px;
}
#tipText {
margin: 3px;
}
#bingo tr td.hard { background:#FFE9E9; }
#bingo tr td.medium { background:#FFFFE9; }
#bingo tr td.easy { background:#F2F2FF; }
#bingo tr td.greensquare { background:#75E075; }
#bingo tr td.redsquare { background:#E08566; }
#bingo{font-size:14pt;}
#stuff {
float:center;
width:700px;
margin: 0px auto;
}
#board {
border-radius: 15px;
background:#F3F3F0;
padding: 10px;
}
#explanation {
float: center;
width: 700px;
}
#generation {
border-radius: 15px;
background:#F3F3F0;
padding: 10px;
border: 3px;
margin: 15px;
}