-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjeopardy.css
More file actions
143 lines (121 loc) · 3 KB
/
Copy pathjeopardy.css
File metadata and controls
143 lines (121 loc) · 3 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/********************************************************************************
*
* Copyright (c) 2009, Conan Albrecht <conan@warp.byu.edu>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*********************************************************************************/
/* Sets the body background and font */
body {
background-image: url("wallpaper.jpg");
font-family: Lucida Sans Unicode, Lucida Grande, sans-serif;
}
/** The setup window */
.setupWindow {
color: #FFFFFF;
}
/** The credits at the bottom */
div.credits {
color: #cccccc;
text-align: center;
font-size: 75%;
}
/** Makes the game take up the entire browser window */
table.main {
width: 100%;
}
/** The left-side column for player names and scores */
td.mainleft {
width: 200;
vertical-align: top;
}
/** The right-side column for the game board */
td.mainright {
vertical-align: top;
}
/** The game board table itself */
table.grid {
width: 100%;
}
/** The player information box (contains both name and score) */
div.playerinfo {
padding: 25px 10px 10px 10px;
text-align: center;
}
/** The player name text */
div.playername {
font-size: 100%;
}
/** The player score text */
div.playerscore {
font-size: 150%;
}
/** The jeopardy game board header cells */
div.gridheader {
color: #FFFF00;
padding: 25px 10px 10px 10px;
text-align: center;
font-size: 100%;
}
/** The jeopardy game board cells */
div.griditem {
padding: 25px 10px 10px 10px;
text-align: center;
font-size: 125%;
}
/** The answer text in the answer popup */
div.popuptext {
color: #FFFFFF;
padding: 20px;
text-align: center;
font-size: 200%;
height: 100px;
}
/** The content of the edit player window */
.editPlayerWindow {
color: #FFFFFF;
}
/** The player table in the answer window */
.questionPlayerTable {
color: #FFFFFF;
margin-top: 15px;
margin-bottom: 30px;
border-width: 4px;
border-style: none;
border-color: gray;
border-collapse: separate;
width: 100%;
}
.questionPlayerTable td {
border-width: 2px;
padding: 5px;
border-style: none;
border-color: gray;
}
/** The player names in the answer window */
.answerPlayerName {
color: #FFFFFF;
text-align: center;
padding-bottom: 5px;
}
/** The player scores in the answer window */
.answerWindowScores {
text-align: center;
padding-bottom: 5px;
}
/** The player grade icons in the answer window */
.answerWindowGrades {
color: #FFFFFF;
text-align: center;
}