-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.5
More file actions
240 lines (212 loc) · 3.47 KB
/
styles.5
File metadata and controls
240 lines (212 loc) · 3.47 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/**
*JPaul Meyer and Jake Morrissey
*styles.css
*
*CS50
*State Compare
*
*global css
*/
/* container for entire page */
.container
{
margin-left: auto;
margin-right: auto;
text-align: center;
font-size: 25px;
}
/* entire compare table */
.comparetable
{
margin-left: auto;
margin-right: auto;
width: auto;
}
/* for sliders on forms */
input[type=range]
{
margin-left: auto;
margin-right: auto;
width: 400px;
height:50px;
}
/* the following "number" classes for the numbers under sliders */
.popnumber
{
font-size: 20px;
color: #6495ED;
}
.areanumber
{
font-size: 20px;
color: #6495ED;
}
.tempnumber
{
font-size: 20px;
color: #6495ED;
}
.incomenumber
{
font-size: 20px;
color: #6495ED;
}
.coastnumber
{
font-size: 20px;
color: #6495ED;
}
/* title for each factor on the form */
.title
{
font-size: 30px;
color: #CD5C5C;
text-decoration: underline;
font-weight: bold;
}
/* table cells for factor winner in compare */
.option-a
{
background-color: WhiteSmoke;
font-size: 25px;
color: MediumSeaGreen;
font-weight: bold;
}
/* table cells for score winner in compare */
.option-ax
{
background-color: MediumSeaGreen;
font-size: 25px;
font-weight: bold;
}
/* table cells for factor loser in compare */
.option-b
{
background-color: WhiteSmoke;
font-size: 25px;
color: #F08080;
}
/* table cells for score loser in compare */
.option-bx
{
background-color: #F08080;
font-size: 25px;
}
/* table cells for factor tier in compare */
.option-c
{
background-color: WhiteSmoke;
font-size: 25px;
color: gold;
font-weight: bold;
}
/* table cells for score tier in compare */
.option-cx
{
background-color: gold;
font-size: 25px;
font-weight: bold;
}
/* red title cell */
.topredbox
{
background-color: #CD5C5C;
font-size: 25px;
border: 4px solid black;
font-weight: bold;
}
/* red content cell */
.contentredbox
{
background-color: #F08080;
font-size: 25px;
border: 4px solid black;
font-weight: bold;
}
/* blue title cell */
.topbluebox
{
background-color: #6495ED;
font-size: 25px;
border: 4px solid black;
font-weight: bold;
}
/* blue content cell */
.contentbluebox
{
background-color: LightBlue;
font-size: 25px;
border: 4px solid black;
font-weight: bold;
}
/* gray title cell */
.topcontentbox
{
background-color: LightGray;
font-size: 25px;
border: 4px solid black;
font-weight: bold;
}
/* gray content cell */
.contentbox
{
background-color: WhiteSmoke;
font-size: 25px;
border: 2px solid black;
}
/* all tables */
#middle table
{
width: auto;
}
/* all table elements */
#middle table, tr, td
{
border: 2px solid black;
padding: 30px;
}
/* header of page */
#top
{
text-align: center;
}
#middle .form-control
{
/* center form controls */
display: inline-block;
/* override Bootstrap's 100% width for form controls */
width: auto;
}
/* all table data */
#middle td
{
text-align: center;
font-size: 25px;
}
#middle .nav
{
/* center navigation pills */
display: inline-block;
}
/* intro text on home page */
#middle .intro
{
text-align: left;
font-size: 18px;
}
/* bold text on home page */
#middle .bolds
{
font-weight: bold;
}
#doc
{
text-align: left;
}
/* footer of page */
#bottom
{
font-size: 15px;
margin: 20px;
text-align: center;
}