-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (69 loc) · 1.23 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
/* https://codepen.io/fannietaeyang/pen/xOQzvq */
body {
background-color: #FFFFFF;
color: black;
font-size: 14px;
font-family: "Lucida Grande", Verdana,Arial, Helvetica, sans-serif;
}
h1, h2, th {
font-family: Georgia, "Times New Roman",Times, serif;
}
h1 {
font-size: 20px;
}
.bingo-title {
text-align: center;
letter-spacing: 4px;
}
.inline {
display: inline;
}
table {
margin: auto;
border-collapse: collapse;
}
#bingo-card {
width: 700px;
}
.wrapper {
margin: auto;
padding: 1em;
background-color: #FFFFFF;
}
th, td {
padding: 10px;
border: 2px #666 solid;
text-align: center;
height: 7.5em;
width: 7.5em;
overflow: hidden;
}
th {
height: 1em;
}
#free, .pickedBG {
background-color: #FF6666;
}
/*#buttons {
display: inline;
float: left;
}
#bingo-select {
display: inline;
float: right;
}*/
button {
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border: none;
background-color: #e7e7e7;
border-radius: 12px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
}
button:hover {
background-color: #E0FFFF;
}