-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbingo.css
53 lines (53 loc) · 1.06 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
body {
font-family: Arial, Helvetica;
font-size: 32pt;
font-weight: bold;
text-align: center;
margin: 0.25in;
background-color: #BBBBBB;
}
.ButtonOff
{
-webkit-appearance: none;
border-radius: 2;
background-color: #CCCCCC; /*without this, safari ignores styling*/
font-family: Arial, Helvetica;
font-size: 12pt;
text-align: center;
white-space: normal;
padding: 2px;
border-style: outset;
cursor: pointer;
height: 108px;
width: 108px;
}
.ButtonOnGreen
{
-webkit-appearance: none;
border-radius: 2;
background-color: #10FF14; /*without this, safari ignores styling*/
font-family: Arial, Helvetica;
font-size: 12pt;
text-align: center;
white-space: normal;
padding: 2px;
border-style: outset;
cursor: pointer;
height: 108px;
width: 108px;
}
.ButtonOnRed
{
-webkit-appearance: none;
border-radius: 2;
background-color: #ED0200; /*without this, safari ignores styling*/
font-family: Arial, Helvetica;
font-size: 12pt;
text-align: center;
white-space: normal;
padding: 2px;
border-style: outset;
cursor: pointer;
height: 108px;
width: 108px;
}