-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjeopardy.css
More file actions
80 lines (67 loc) · 1.06 KB
/
jeopardy.css
File metadata and controls
80 lines (67 loc) · 1.06 KB
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
body {
background-color: #115ff4;
}
header {
color: white;
text-align: center;
}
header > h1 {
font-size: 3em;
margin-bottom: 0;
}
#jeopardy {
text-align: center;
font-size: 9pt;
background-color: #060ce9;
color: white;
border-collapse: collapse;
margin: 0 auto;
}
#jeopardy th, #jeopardy td {
border: solid 1px white;
width: 10em;
padding: 0.5em;
}
#jeopardy td.disabled {
background-color: #28a200
}
th {
text-transform: uppercase;
font-family: Helvetica, sans-serif;
font-weight: bold;
height: 4em;
text-shadow: darkgoldenrod 1px 1px;
}
td {
height: 7em;
font-family: Copse, serif;
}
button, td {
cursor: pointer;
}
.fa-question-circle {
pointer-events: none;
}
#start {
background-color: #8d2ab5;
padding: 1em 3em;
border: none;
border-radius: 0.5em;
color: white;
font-size: 1em;
margin: 0.5em 0;
}
#start:hover,
#start.disabled {
background-color: #74119c;
}
.disabled {
cursor: not-allowed;
}
#spin-container {
font-size: 12em;
text-align: center;
color: white;
margin: 25px;
display: none;
}