-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
executable file
·402 lines (320 loc) · 7.64 KB
/
styles.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
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
@charset "UTF-8";
/* CSS Document */
/*
Theme Name: Mike Sinkula's WordPress Demo
Author: Mike Sinkula of Premium Design Works
Author URI: http://www.premiumdw.com/
Description: This is my demo theme for the WEB170 WordPress class.
Version: 1.0
*/
/*
Purple: http://slayeroffice.com/tools/color_palette/?hex=39275B
Gold: http://slayeroffice.com/tools/color_palette/?hex=EBB700
*/
* { margin: 0; padding: 0; }
html {
background: linear-gradient(to bottom, #2b1d44 0%, #39275b 100%); /* W3C */
}
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 100%; /* sets all type sizes to a default 16px */
color: #000000;
background-image: url(images/bg-boxes.png);
background-position: top ; /* positioned to the top of page */
background-repeat: repeat-x; /* repeat horizontally */
}
h1 {
font-size: 2.25em; /* 36px */
line-height: 100%; /* 36px */
color: #FFF;
}
h2 {
font-size: 1.5em; /* 24px */
line-height: 100%; /* 24px */
color: #39275B; /* purple */
/*padding-top: 8px;*/
margin-bottom: 10px; /* changed */
}
h3 {
font-size: 1.125em; /* 18px */
line-height: 100%; /* 18px */
color: #39275B; /* purple */
padding-top: 10px; /* changed */
margin-bottom: 4px; /* changed */
}
p {
font-size: 1em; /* 16px */
line-height: 150%; /* 24px */
margin-bottom: 10px;
}
ol, ul {
font-size: 1em; /* 16px */
line-height: 150%; /* 24px */
margin-bottom: 10px;
list-style-position: inside;
}
img {
box-sizing: border-box;
max-width: 100%;
height: auto;
}
#header {
max-width: 980px; /* change to a max-width */
margin: 0 auto;
padding-top: 20px; /* change the padding */
/*border: 1px solid black;*/
}
#header a {
color: #FFFFFF; /* white */
text-decoration: none; /* remove undeline */
}
#header a:hover {
color: #EBB700; /* gold */
}
#toggle {
display: none;
}
#navigation {
max-width: 980px; /* change to a max-width */
margin: 0 auto;
padding: 10px 0; /* lets change this to 10px top/bottom and 0px left/right */
/*border: 1px solid black;*/
color: #FFF; /* give all text elements a color of white */
}
#navigation > ul {
overflow: hidden; /* prevents the great collapse */
/*border: 1px solid grey;*/
padding: 10px 0;
margin: 0; /* overwrites existing margins */
}
#navigation > ul > li {
list-style: none;
display: inline-block;
/* position: relative; */
margin: 0; /* overwrites existing margins */
margin-right: 20px; /* gives the items space between */
}
#navigation ul li a {
color: #FFF; /* let's use white for the default link state */
text-decoration: none; /* this disables the default underline */
display: block;
}
#navigation ul li a:hover {
color: #EBB700; /* bright gold */
}
#navigation ul li.current a {
color: #EBB700; /* bright gold */
}
#navigation ul li ul.sub-navigation {
position: absolute;
z-index: 100;
display: none;
background-color: #FFF;
border-radius: 5px;
padding: 4px;
box-shadow: 5px 5px 10px #39275B;
}
#navigation ul li:hover ul.sub-navigation {
display: block;
}
#navigation ul li ul.sub-navigation li {
list-style-type: none;
padding: 4px 10px;
}
#navigation ul li ul.sub-navigation li a {
color: #39275B; /* purple */
}
#navigation ul li ul.sub-navigation li a:hover {
color: #EBB700; /* bright gold */
}
#middle {
max-width: 940px; /* change to a max-width */
background-image: url(/*images/bg-960.png*/);
background-position: center;
background-repeat: repeat-y;
background-color:#FFFFFF;
overflow: hidden; /* prevents the great collapse */
margin: 0 auto;
padding: 20px; /* change padding to 20px all around */
border-radius: 10px; /* adds rounded corners */
}
#middle a {
color: #39275B; /* purple */
}
#middle a:hover {
color: #EBB700; /* gold */
}
#widgets {
overflow: hidden;
}
#widgets section.widget-item {
width: 300px;
float: left;
margin-right: 20px;
}
#widgets section.widget-item:last-child {
margin-right: 0px;
}
#content {
width: 620px;
float: left;
}
#content label {
display: block;
color: #39275B;
margin-bottom: 4px;
font-weight: bold;
}
#content blockquote {
border-top: 1px solid #39275B;
border-bottom: 1px solid #39275B;
padding: 10px 0;
font-style: italic;
color: #39275B;
}
#content input, #content select, #content textarea {
display: block;
margin-bottom: 10px;
}
#content img {
border: 1px solid #000;
padding: 4px;
}
#content img.featured {
margin-bottom: 10px;
}
#sidebar {
width: 300px;
float: right;
}
#sidebar ul {
}
#sidebar ul li {
}
#footer {
max-width: 980px; /* change to a max-width */
margin: 0 auto;
padding: 20px 0; /* change the padding */
color: #FFF; /* give all text elements a color of white */
}
#footer a {
color: #FFFFFF; /* white */
}
#footer a:hover {
color: #EBB700; /* gold */
}
/* Desktop Screen Set to 1024px or Below */
@media screen and (max-width: 1024px) {
html { -webkit-text-size-adjust: none; }
#middle {
padding: 20px 02.04%; /* 20px / 980px */
}
#content {
width: 65.95%; /* 620px / 940px */
}
#sidebar {
width: 31.91%; /* 300px / 940px */
}
#widgets section.widget-item {
width: 31.91%; /* 300px / 940px */
margin-right: 02.12%; /* 20px / 940px */
}
}
/* Tablet Screen Set to 800px or Below */
@media screen and (max-width: 800px) {
#header {
padding-left: 02.04%; /* 20px / 980px */
padding-right: 02.04%;
}
#navigation {
padding-left: 02.04%;
padding-right: 02.04%;
}
#middle {
border-radius: 0px; /* removes rounded corners */
}
#footer {
padding-left: 02.04%;
padding-right: 02.04%;
}
}
/* Mobile Screen Set to 600px or Below */
@media screen and (max-width: 600px) {
#header {
padding-left: 10px;
padding-right: 10px;
overflow: hidden; /* prevent the great collapse */
}
#logo {
float: left; /* float our logo left */
margin-bottom: 10px;
}
#toggle {
display: block; /* make our toggle visible */
float: right; /* float our toggle right */
padding-top: 7px; /* move this into place */
}
#navigation {
display: none; /* hide our navigation */
padding-left: 10px;
padding-right: 10px;
}
#navigation ul li {
display: block;
padding: 10px;
border-top: 1px solid #FFF;
margin: 0;
}
#navigation ul li:last-child {
border-bottom: 1px solid #FFF;
}
#navigation ul li a {
display: block; /* makes the anchor tag extend out */
}
#navigation ul li ul.sub-navigation {
position: inherit;
z-index: 100;
display: block;
background-color: inherit;
border-radius: 0px;
padding: 4px;
box-shadow: none;
}
#navigation ul li:hover ul.sub-navigation {
display: block;
}
#navigation ul li ul.sub-navigation li {
list-style-type: none;
padding: 4px 10px;
}
#navigation ul li ul.sub-navigation li a {
color: #FFFFFF; /* white */
}
#navigation ul li ul.sub-navigation li a:hover {
color: #EBB700; /* bright gold */
}
#middle {
padding: 20px 10px;
}
#content {
width: 100%;
float: none;
margin-bottom: 20px;
}
#sidebar {
width: 100%;
float: none;
padding-top: 20px;
border-top: 1px solid #39275B;
}
#widgets section.widget-item {
width: 100%;
float: none;
margin-right: 0;
margin-bottom: 20px;
}
#footer {
padding-left: 10px;
padding-right: 10px;
}
}