oregano 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +2 -0
  3. data/Gemfile +7 -0
  4. data/README.md +3 -0
  5. data/Rakefile +78 -0
  6. data/lib/oregano.rb +14 -0
  7. data/lib/oregano/version.rb +3 -0
  8. data/oregano.gemspec +29 -0
  9. data/sites/slippery/index.md +108 -0
  10. data/templates/escape_velocity/public/LICENSE.txt +63 -0
  11. data/templates/escape_velocity/public/README.txt +36 -0
  12. data/templates/escape_velocity/public/css/font-awesome.min.css +4 -0
  13. data/templates/escape_velocity/public/css/ie/PIE.htc +96 -0
  14. data/templates/escape_velocity/public/css/ie/backgroundsize.min.htc +7 -0
  15. data/templates/escape_velocity/public/css/ie/html5shiv.js +8 -0
  16. data/templates/escape_velocity/public/css/ie/v8.css +74 -0
  17. data/templates/escape_velocity/public/css/images/overlay.png +0 -0
  18. data/templates/escape_velocity/public/css/images/shadow.png +0 -0
  19. data/templates/escape_velocity/public/css/skel.css +222 -0
  20. data/templates/escape_velocity/public/css/style-1000px.css +99 -0
  21. data/templates/escape_velocity/public/css/style-desktop.css +574 -0
  22. data/templates/escape_velocity/public/css/style-mobile.css +417 -0
  23. data/templates/escape_velocity/public/css/style.css +870 -0
  24. data/templates/escape_velocity/public/fonts/FontAwesome.otf +0 -0
  25. data/templates/escape_velocity/public/fonts/fontawesome-webfont.eot +0 -0
  26. data/templates/escape_velocity/public/fonts/fontawesome-webfont.svg +520 -0
  27. data/templates/escape_velocity/public/fonts/fontawesome-webfont.ttf +0 -0
  28. data/templates/escape_velocity/public/fonts/fontawesome-webfont.woff +0 -0
  29. data/templates/escape_velocity/public/images/banner.jpg +0 -0
  30. data/templates/escape_velocity/public/images/pic01.jpg +0 -0
  31. data/templates/escape_velocity/public/images/pic02.jpg +0 -0
  32. data/templates/escape_velocity/public/images/pic03.jpg +0 -0
  33. data/templates/escape_velocity/public/images/pic04.jpg +0 -0
  34. data/templates/escape_velocity/public/images/pic05.jpg +0 -0
  35. data/templates/escape_velocity/public/images/pic06.jpg +0 -0
  36. data/templates/escape_velocity/public/images/pic07.jpg +0 -0
  37. data/templates/escape_velocity/public/images/pic08.jpg +0 -0
  38. data/templates/escape_velocity/public/images/pic09.jpg +0 -0
  39. data/templates/escape_velocity/public/images/pic10.jpg +0 -0
  40. data/templates/escape_velocity/public/index.html +297 -0
  41. data/templates/escape_velocity/public/js/init.js +86 -0
  42. data/templates/escape_velocity/public/js/jquery.dropotron.min.js +2 -0
  43. data/templates/escape_velocity/public/js/jquery.min.js +4 -0
  44. data/templates/escape_velocity/public/js/skel-layers.min.js +2 -0
  45. data/templates/escape_velocity/public/js/skel.min.js +2 -0
  46. data/templates/escape_velocity/public/left-sidebar.html +353 -0
  47. data/templates/escape_velocity/public/no-sidebar.html +299 -0
  48. data/templates/escape_velocity/public/right-sidebar.html +353 -0
  49. data/templates/escape_velocity/template.rb +11 -0
  50. data/templates/simple_style_4/public/another_page.html +90 -0
  51. data/templates/simple_style_4/public/contact.html +96 -0
  52. data/templates/simple_style_4/public/examples.html +152 -0
  53. data/templates/simple_style_4/public/index.html +99 -0
  54. data/templates/simple_style_4/public/page.html +90 -0
  55. data/templates/simple_style_4/public/style/back.png +0 -0
  56. data/templates/simple_style_4/public/style/bullet.png +0 -0
  57. data/templates/simple_style_4/public/style/footer.png +0 -0
  58. data/templates/simple_style_4/public/style/graphic.png +0 -0
  59. data/templates/simple_style_4/public/style/link.png +0 -0
  60. data/templates/simple_style_4/public/style/search.png +0 -0
  61. data/templates/simple_style_4/public/style/side_back.png +0 -0
  62. data/templates/simple_style_4/public/style/side_base.png +0 -0
  63. data/templates/simple_style_4/public/style/side_top.png +0 -0
  64. data/templates/simple_style_4/public/style/style.css +324 -0
  65. data/templates/simple_style_4/public/style/tab.png +0 -0
  66. data/templates/simple_style_4/public/style/tab_selected.png +0 -0
  67. data/templates/simple_style_4/template.rb +11 -0
  68. metadata +223 -0
@@ -0,0 +1,417 @@
1
+ /*
2
+ Escape Velocity by HTML5 UP
3
+ html5up.net | @n33co
4
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5
+ */
6
+
7
+ /*********************************************************************************/
8
+ /* Basic */
9
+ /*********************************************************************************/
10
+
11
+ body, input, select, textarea
12
+ {
13
+ line-height: 1.5em;
14
+ font-size: 10.5pt;
15
+ letter-spacing: 0;
16
+ }
17
+
18
+ h2, h3, h4, h5, h6
19
+ {
20
+ font-size: 1.2em;
21
+ letter-spacing: 0.05em;
22
+ margin: 0 0 1em 0;
23
+ }
24
+
25
+ hr
26
+ {
27
+ margin: 1em 0 1em 0;
28
+ }
29
+
30
+ /* Section/Article */
31
+
32
+ section,
33
+ article
34
+ {
35
+ clear: both;
36
+ padding: 1em 0 1em 0 !important;
37
+ }
38
+
39
+ header
40
+ {
41
+ }
42
+
43
+ header br
44
+ {
45
+ display: none;
46
+ }
47
+
48
+ header.style1
49
+ {
50
+ padding: 0 0 1em 0;
51
+ }
52
+
53
+ header.style1 h2
54
+ {
55
+ font-size: 1.5em;
56
+ letter-spacing: 0.075em;
57
+ line-height: 1.25em;
58
+ }
59
+
60
+ header.style1 p
61
+ {
62
+ display: block;
63
+ margin: 0;
64
+ }
65
+
66
+ /* Button */
67
+
68
+ input[type="button"],
69
+ input[type="submit"],
70
+ input[type="reset"],
71
+ .button
72
+ {
73
+ display: block;
74
+ width: 100%;
75
+ font-size: 1em;
76
+ padding: 1em 0 1em 0;
77
+ max-width: 30em;
78
+ margin: 0 auto;
79
+ }
80
+
81
+ /* List */
82
+
83
+ ul.actions
84
+ {
85
+ margin: 2em 0 0 0;
86
+ }
87
+
88
+ form ul.actions
89
+ {
90
+ margin: 1em 0 0 0;
91
+ }
92
+
93
+ ul.actions li
94
+ {
95
+ margin: 15px 0 0 0;
96
+ }
97
+
98
+ /* Feature List */
99
+
100
+ .feature-list
101
+ {
102
+ }
103
+
104
+ .feature-list section
105
+ {
106
+ border-top: solid 1px #eee;
107
+ }
108
+
109
+ /* Ugh ... disgusting. */
110
+ .feature-list > div > div:first-child > div:first-child > section
111
+ {
112
+ border-top: 0;
113
+ padding-top: 0;
114
+ }
115
+
116
+ .feature-list h3
117
+ {
118
+ position: relative;
119
+ padding: 4px 0 0 48px;
120
+ line-height: 1.25em;
121
+ }
122
+
123
+ .feature-list h3:before
124
+ {
125
+ position: absolute;
126
+ left: 0;
127
+ top: 0;
128
+ width: 32px;
129
+ height: 32px;
130
+ line-height: 32px;
131
+ font-size: 16px;
132
+ }
133
+
134
+ .feature-list p
135
+ {
136
+ margin: 0 0 0 48px;
137
+ }
138
+
139
+ /* Box */
140
+
141
+ .box
142
+ {
143
+ }
144
+
145
+ .box.post-excerpt
146
+ {
147
+ }
148
+
149
+ .box.post-excerpt .image.left
150
+ {
151
+ position: relative;
152
+ top: 0.25em;
153
+ width: 25%;
154
+ margin: 0;
155
+ }
156
+
157
+ .box.post-excerpt h3,
158
+ .box.post-excerpt p
159
+ {
160
+ margin-left: 32.5%;
161
+ }
162
+
163
+ /*********************************************************************************/
164
+ /* Mobile UI */
165
+ /*********************************************************************************/
166
+
167
+ #titleBar
168
+ {
169
+ background: none;
170
+ }
171
+
172
+ #titleBar .title
173
+ {
174
+ display: none;
175
+ }
176
+
177
+ #titleBar .toggle
178
+ {
179
+ position: absolute;
180
+ top: 0;
181
+ left: 0;
182
+ width: 60px;
183
+ height: 44px;
184
+ }
185
+
186
+ #titleBar .toggle:before
187
+ {
188
+ font-family: FontAwesome;
189
+ text-decoration: none;
190
+ font-style: normal;
191
+ font-weight: normal;
192
+ -webkit-font-smoothing:antialiased;
193
+ -moz-osx-font-smoothing:grayscale;
194
+
195
+ content: '\f0c9';
196
+ font-size: 14px;
197
+ position: absolute;
198
+ top: 6px;
199
+ left: 6px;
200
+ display: block;
201
+ width: 54px;
202
+ height: 38px;
203
+ line-height: 38px;
204
+ text-align: center;
205
+ color: rgba(255,255,255,0.75);
206
+ background-color: rgba(92,95,103,0.5);
207
+ border-radius: 0.25em;
208
+ -moz-transition: all .15s ease-in-out;
209
+ -webkit-transition: all .15s ease-in-out;
210
+ -o-transition: all .15s ease-in-out;
211
+ -ms-transition: all .15s ease-in-out;
212
+ transition: all .15s ease-in-out;
213
+ }
214
+
215
+ #titleBar .toggle:active:before
216
+ {
217
+ background-color: rgba(92,95,103,0.75);
218
+ }
219
+
220
+ #navPanel
221
+ {
222
+ background: #242730 url('images/overlay.png');
223
+ box-shadow: inset -3px 0px 4px 0px rgba(0,0,0,0.1);
224
+ }
225
+
226
+ #navPanel .link
227
+ {
228
+ display: block;
229
+ color: rgba(255,255,255,0.5);
230
+ text-transform: uppercase;
231
+ text-decoration: none;
232
+ font-size: 0.85em;
233
+ letter-spacing: 0.15em;
234
+ text-decoration: none;
235
+ height: 44px;
236
+ line-height: 44px;
237
+ border-top: solid 1px rgba(255,255,255,0.05);
238
+ margin: 0 15px 0 15px;
239
+ }
240
+
241
+ #navPanel .link:first-child
242
+ {
243
+ border-top: 0;
244
+ }
245
+
246
+ #navPanel .indent-1 { display: inline-block; width: 1em; }
247
+ #navPanel .indent-2 { display: inline-block; width: 2em; }
248
+ #navPanel .indent-3 { display: inline-block; width: 3em; }
249
+ #navPanel .indent-4 { display: inline-block; width: 4em; }
250
+ #navPanel .indent-5 { display: inline-block; width: 5em; }
251
+ #navPanel .depth-0 { color: #fff; }
252
+
253
+ /*********************************************************************************/
254
+ /* Wrappers */
255
+ /*********************************************************************************/
256
+
257
+ .wrapper
258
+ {
259
+ padding: 15px 15px 5em 15px;
260
+ }
261
+
262
+ .wrapper .title
263
+ {
264
+ font-size: 0.9em;
265
+ width: 18em;
266
+ height: 2.5em;
267
+ top: -2.5em;
268
+ line-height: 2.5em;
269
+ margin-bottom: -2.5em;
270
+ margin-left: -9em;
271
+ padding-top: 0.5em;
272
+ }
273
+
274
+ .wrapper .title:before,
275
+ .wrapper .title:after
276
+ {
277
+ height: 15px;
278
+ bottom: -15px;
279
+ background-size: 100% 100%;
280
+ }
281
+
282
+ #header-wrapper
283
+ {
284
+ padding: 6em 2em 6em 2em;
285
+ }
286
+
287
+ #footer-wrapper
288
+ {
289
+ padding-top: 3em;
290
+ }
291
+
292
+ #footer-wrapper .feature-list section
293
+ {
294
+ border-top-color: #eee;
295
+ border-top-color: rgba(255,255,255,0.05);
296
+ }
297
+
298
+ /*********************************************************************************/
299
+ /* Header */
300
+ /*********************************************************************************/
301
+
302
+ #header
303
+ {
304
+ }
305
+
306
+ /*********************************************************************************/
307
+ /* Logo */
308
+ /*********************************************************************************/
309
+
310
+ #logo
311
+ {
312
+ text-align: center;
313
+ }
314
+
315
+ #logo h1
316
+ {
317
+ font-size: 1.5em;
318
+ letter-spacing: 0.2em;
319
+ }
320
+
321
+ #logo p
322
+ {
323
+ margin: 1.25em 0 0 0;
324
+ display: block;
325
+ letter-spacing: 0.2em;
326
+ font-size: 0.9em;
327
+ }
328
+
329
+ /*********************************************************************************/
330
+ /* Nav */
331
+ /*********************************************************************************/
332
+
333
+ #nav
334
+ {
335
+ display: none;
336
+ }
337
+
338
+ /*********************************************************************************/
339
+ /* Intro */
340
+ /*********************************************************************************/
341
+
342
+ #intro
343
+ {
344
+ text-align: center;
345
+ padding: 1em 2em 1em 2em !important;
346
+ margin: 0 auto;
347
+ }
348
+
349
+ #intro .style2
350
+ {
351
+ font-size: 1.5em;
352
+ letter-spacing: 0.05em;
353
+ line-height: 1.25em;
354
+ padding: 1.25em;
355
+ }
356
+
357
+ /*********************************************************************************/
358
+ /* Main */
359
+ /*********************************************************************************/
360
+
361
+ #main
362
+ {
363
+ padding: 1em 0 0 0;
364
+ }
365
+
366
+ /*********************************************************************************/
367
+ /* Content */
368
+ /*********************************************************************************/
369
+
370
+ #content
371
+ {
372
+ padding: 0 0 2em 0;
373
+ }
374
+
375
+ #content header.style1
376
+ {
377
+ padding-bottom: 2.5em;
378
+ }
379
+
380
+ /*********************************************************************************/
381
+ /* Footer */
382
+ /*********************************************************************************/
383
+
384
+ #footer
385
+ {
386
+ }
387
+
388
+ #footer hr
389
+ {
390
+ display: none;
391
+ }
392
+
393
+ /*********************************************************************************/
394
+ /* Copyright */
395
+ /*********************************************************************************/
396
+
397
+ #copyright
398
+ {
399
+ padding: 2em 0 0 0;
400
+ }
401
+
402
+ #copyright ul
403
+ {
404
+ padding: 1em 2em;
405
+ width: 100%;
406
+ }
407
+
408
+ #copyright ul li
409
+ {
410
+ display: block;
411
+ margin: 0.5em 0 0 0;
412
+ }
413
+
414
+ #copyright ul li:first-child
415
+ {
416
+ margin-top: 0;
417
+ }
@@ -0,0 +1,870 @@
1
+ @charset 'UTF-8';
2
+ @import url('http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,700,900');
3
+ @import url('font-awesome.min.css');
4
+
5
+ /*
6
+ Escape Velocity by HTML5 UP
7
+ html5up.net | @n33co
8
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
9
+ */
10
+
11
+ /*********************************************************************************/
12
+ /* Basic */
13
+ /*********************************************************************************/
14
+
15
+ body, input, textarea, select
16
+ {
17
+ font-family: 'Source Sans Pro', sans-serif;
18
+ font-weight: 400;
19
+ color: #919499;
20
+ }
21
+
22
+ body.is-loading *
23
+ {
24
+ -moz-transition: none !important;
25
+ -webkit-transition: none !important;
26
+ -o-transition: none !important;
27
+ -ms-transition: none !important;
28
+ transition: none !important;
29
+ -moz-animation: none !important;
30
+ -webkit-animation: none !important;
31
+ -o-animation: none !important;
32
+ -ms-animation: none !important;
33
+ animation: none !important;
34
+ }
35
+
36
+ h1,h2,h3,h4,h5,h6
37
+ {
38
+ font-weight: 700;
39
+ color: #484d55;
40
+ }
41
+
42
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
43
+ {
44
+ color: inherit;
45
+ text-decoration: none;
46
+ }
47
+
48
+ a
49
+ {
50
+ text-decoration: underline;
51
+ color: #717479;
52
+ -moz-transition: color .25s ease-in-out;
53
+ -webkit-transition: color .25s ease-in-out;
54
+ -o-transition: color .25s ease-in-out;
55
+ -ms-transition: color .25s ease-in-out;
56
+ transition: color .25s ease-in-out;
57
+ }
58
+
59
+ a:hover
60
+ {
61
+ text-decoration: none;
62
+ }
63
+
64
+ strong, b
65
+ {
66
+ font-weight: 700;
67
+ color: #484d55;
68
+ }
69
+
70
+ blockquote
71
+ {
72
+ border-left: solid 0.5em #ddd;
73
+ padding: 1em 0 1em 2em;
74
+ font-style: italic;
75
+ }
76
+
77
+ em, i
78
+ {
79
+ font-style: italic;
80
+ }
81
+
82
+ hr
83
+ {
84
+ border: 0;
85
+ border-top: solid 1px #ddd;
86
+ }
87
+
88
+ sub
89
+ {
90
+ position: relative;
91
+ top: 0.5em;
92
+ font-size: 0.8em;
93
+ }
94
+
95
+ sup
96
+ {
97
+ position: relative;
98
+ top: -0.5em;
99
+ font-size: 0.8em;
100
+ }
101
+
102
+ .nobr
103
+ {
104
+ white-space: nowrap;
105
+ }
106
+
107
+ br.clear
108
+ {
109
+ clear: both;
110
+ }
111
+
112
+ p, ul, ol, dl, table, blockquote, form
113
+ {
114
+ margin-bottom: 2em;
115
+ }
116
+
117
+ /* Table */
118
+
119
+ table
120
+ {
121
+ width: 100%;
122
+ }
123
+
124
+ table.default
125
+ {
126
+ width: 100%;
127
+ }
128
+
129
+ table.default tbody tr:nth-child(2n+2)
130
+ {
131
+ background: #f4f4f4;
132
+ }
133
+
134
+ table.default td
135
+ {
136
+ padding: 0.5em 1em 0.5em 1em;
137
+ }
138
+
139
+ table.default th
140
+ {
141
+ text-align: left;
142
+ font-weight: 400;
143
+ padding: 0.5em 1em 0.5em 1em;
144
+ }
145
+
146
+ table.default thead
147
+ {
148
+ background: #484d55;
149
+ color: #fff;
150
+ }
151
+
152
+ table.default tfoot
153
+ {
154
+ background: #eee;
155
+ }
156
+
157
+ table.default tbody
158
+ {
159
+ }
160
+
161
+ /* Form */
162
+
163
+ form
164
+ {
165
+ }
166
+
167
+ form label
168
+ {
169
+ display: block;
170
+ font-weight: 700;
171
+ color: #484d55;
172
+ }
173
+
174
+ form input[type="text"],
175
+ form input[type="email"],
176
+ form input[type="password"],
177
+ form select,
178
+ form textarea
179
+ {
180
+ -webkit-appearance: none;
181
+ display: block;
182
+ border: 0;
183
+ background: #eee;
184
+ box-shadow: inset 0px 0px 1px 0px #a0a1a7;
185
+ border-radius: 0.35em;
186
+ width: 100%;
187
+ padding: 0.75em 1em 0.75em 1em;
188
+ -moz-transition: all .25s ease-in-out;
189
+ -webkit-transition: all .25s ease-in-out;
190
+ -o-transition: all .25s ease-in-out;
191
+ -ms-transition: all .25s ease-in-out;
192
+ transition: all .25s ease-in-out;
193
+ }
194
+
195
+ form input[type="text"],
196
+ form input[type="email"],
197
+ form input[type="password"],
198
+ form select
199
+ {
200
+ line-height: 1em;
201
+ }
202
+
203
+ form textarea
204
+ {
205
+ min-height: 10em;
206
+ }
207
+
208
+ form input[type="text"]:focus,
209
+ form input[type="email"]:focus,
210
+ form input[type="password"]:focus,
211
+ form select:focus,
212
+ form textarea:focus
213
+ {
214
+ background: #f8f8f8;
215
+ }
216
+
217
+ form .formerize-placeholder
218
+ {
219
+ color: #555 !important;
220
+ font-style: italic;
221
+ }
222
+
223
+ form ::-webkit-input-placeholder
224
+ {
225
+ color: #555 !important;
226
+ font-style: italic;
227
+ line-height: 1.35em;
228
+ }
229
+
230
+ form :-moz-placeholder
231
+ {
232
+ color: #555 !important;
233
+ font-style: italic;
234
+ }
235
+
236
+ form ::-moz-placeholder
237
+ {
238
+ color: #555 !important;
239
+ font-style: italic;
240
+ }
241
+
242
+ form :-ms-input-placeholder
243
+ {
244
+ color: #555 !important;
245
+ font-style: italic;
246
+ }
247
+
248
+ form ::-moz-focus-inner
249
+ {
250
+ border: 0;
251
+ }
252
+
253
+ /* Section/Article */
254
+
255
+ section,
256
+ article
257
+ {
258
+ margin-bottom: 3em;
259
+ }
260
+
261
+ section > :last-child,
262
+ article > :last-child
263
+ {
264
+ margin-bottom: 0;
265
+ }
266
+
267
+ section:last-child,
268
+ article:last-child
269
+ {
270
+ margin-bottom: 0;
271
+ }
272
+
273
+ header.style1
274
+ {
275
+ text-align: center;
276
+ }
277
+
278
+ header.style1 h2
279
+ {
280
+ font-weight: 700;
281
+ }
282
+
283
+ header.style1 p
284
+ {
285
+ color: #b1b4b9;
286
+ }
287
+
288
+ /* Image */
289
+
290
+ .image
291
+ {
292
+ display: inline-block;
293
+ }
294
+
295
+ .image img
296
+ {
297
+ display: block;
298
+ width: 100%;
299
+ }
300
+
301
+ .image.fit
302
+ {
303
+ display: block;
304
+ width: 100%;
305
+ }
306
+
307
+ .image.left
308
+ {
309
+ float: left;
310
+ margin: 0 2em 2em 0;
311
+ }
312
+
313
+ .image.centered
314
+ {
315
+ display: block;
316
+ margin: 0 0 2em 0;
317
+ }
318
+
319
+ .image.centered img
320
+ {
321
+ margin: 0 auto;
322
+ width: auto;
323
+ }
324
+
325
+ .image.featured
326
+ {
327
+ display: block;
328
+ width: 100%;
329
+ margin: 0 0 2em 0;
330
+ }
331
+
332
+ /* Button */
333
+
334
+ input[type="button"],
335
+ input[type="submit"],
336
+ input[type="reset"],
337
+ .button
338
+ {
339
+ display: inline-block;
340
+ background: #444;
341
+ text-align: center;
342
+ text-transform: uppercase;
343
+ font-weight: 700;
344
+ letter-spacing: 0.25em;
345
+ text-decoration: none;
346
+ border-radius: 0.35em;
347
+ border: 0;
348
+ outline: 0;
349
+ cursor: pointer;
350
+ -moz-transition: all .25s ease-in-out;
351
+ -webkit-transition: all .25s ease-in-out;
352
+ -o-transition: all .25s ease-in-out;
353
+ -ms-transition: all .25s ease-in-out;
354
+ transition: all .25s ease-in-out;
355
+ }
356
+
357
+ input[type="button"].style1,
358
+ input[type="submit"].style1,
359
+ input[type="reset"].style1,
360
+ .button.style1
361
+ {
362
+ background: #e97770 url('images/overlay.png');
363
+ color: #fff;
364
+ }
365
+
366
+ input[type="button"].style1:hover,
367
+ input[type="submit"].style1:hover,
368
+ input[type="reset"].style1:hover,
369
+ .button.style1:hover
370
+ {
371
+ background-color: #f98780;
372
+ }
373
+
374
+ input[type="button"].style1:active,
375
+ input[type="submit"].style1:active,
376
+ input[type="reset"].style1:active,
377
+ .button.style1:active
378
+ {
379
+ background-color: #d96760;
380
+ }
381
+
382
+ input[type="button"].style2,
383
+ input[type="submit"].style2,
384
+ input[type="reset"].style2,
385
+ .button.style2
386
+ {
387
+ background: none;
388
+ color: #606167;
389
+ box-shadow: inset 0px 0px 2px 0px #a0a1a7;
390
+ }
391
+
392
+ input[type="button"].style2:hover,
393
+ input[type="submit"].style2:hover,
394
+ input[type="reset"].style2:hover,
395
+ .button.style2:hover
396
+ {
397
+ box-shadow: inset 0px 0px 2px 0px #606167;
398
+ }
399
+
400
+ input[type="button"].style2:active,
401
+ input[type="submit"].style2:active,
402
+ input[type="reset"].style2:active,
403
+ .button.style2:active
404
+ {
405
+ box-shadow: inset 0px 0px 2px 0px #202127;
406
+ }
407
+
408
+ input[type="button"].style3,
409
+ input[type="submit"].style3,
410
+ input[type="reset"].style3,
411
+ .button.style3
412
+ {
413
+ background: #2f333b url('images/overlay.png');
414
+ color: #fff;
415
+ }
416
+
417
+ input[type="button"].style3:hover,
418
+ input[type="submit"].style3:hover,
419
+ input[type="reset"].style3:hover,
420
+ .button.style3:hover
421
+ {
422
+ background-color: #3f434b;
423
+ }
424
+
425
+ input[type="button"].style3:active,
426
+ input[type="submit"].style3:active,
427
+ input[type="reset"].style3:active,
428
+ .button.style3:active
429
+ {
430
+ background-color: #1f232b;
431
+ }
432
+
433
+ /* List */
434
+
435
+ ul.default
436
+ {
437
+ list-style: disc;
438
+ padding-left: 1em;
439
+ }
440
+
441
+ ul.default li
442
+ {
443
+ padding-left: 0.5em;
444
+ }
445
+
446
+ ul.style2
447
+ {
448
+ }
449
+
450
+ ul.style2 li
451
+ {
452
+ border-top: solid 1px #eee;
453
+ padding: 1.5em 0 0 0;
454
+ margin: 1.5em 0 0 0;
455
+ }
456
+
457
+ ul.style2 li:first-child
458
+ {
459
+ border-top: 0;
460
+ padding-top: 0;
461
+ margin-top: 0;
462
+ }
463
+
464
+ ul.style3
465
+ {
466
+ }
467
+
468
+ ul.style3 li
469
+ {
470
+ border-top: solid 1px #eee;
471
+ padding: 0.5em 0 0 0;
472
+ margin: 0.5em 0 0 0;
473
+ }
474
+
475
+ ul.style3 li:first-child
476
+ {
477
+ border-top: 0;
478
+ padding-top: 0;
479
+ margin-top: 0;
480
+ }
481
+
482
+ ol
483
+ {
484
+ }
485
+
486
+ ol.default
487
+ {
488
+ list-style: decimal;
489
+ padding-left: 1.25em;
490
+ }
491
+
492
+ ol.default li
493
+ {
494
+ padding-left: 0.25em;
495
+ }
496
+
497
+ /* Feature List */
498
+
499
+ .feature-list
500
+ {
501
+ }
502
+
503
+ .feature-list h3
504
+ {
505
+ color: #e97770 !important;
506
+ }
507
+
508
+ .feature-list h3:before
509
+ {
510
+ position: relative;
511
+ display: inline-block;
512
+ color: #fff;
513
+ background: #2f333b url('images/overlay.png');
514
+ border-radius: 1em;
515
+ text-align: center;
516
+ }
517
+
518
+ /*********************************************************************************/
519
+ /* Icons */
520
+ /*********************************************************************************/
521
+
522
+ .icon {
523
+ text-decoration: none;
524
+ }
525
+
526
+ .icon:before {
527
+ display: inline-block;
528
+ font-family: FontAwesome;
529
+ font-size: 1.25em;
530
+ text-decoration: none;
531
+ font-style: normal;
532
+ font-weight: normal;
533
+ line-height: 1;
534
+ -webkit-font-smoothing:antialiased;
535
+ -moz-osx-font-smoothing:grayscale;
536
+ }
537
+
538
+ .icon > .label {
539
+ display: none;
540
+ }
541
+
542
+ /*********************************************************************************/
543
+ /* Wrappers */
544
+ /*********************************************************************************/
545
+
546
+ .wrapper
547
+ {
548
+ position: relative;
549
+ }
550
+
551
+ .wrapper .title
552
+ {
553
+ position: absolute;
554
+ top: 0;
555
+ left: 50%;
556
+ text-align: center;
557
+ text-transform: uppercase;
558
+ display: block;
559
+ font-weight: 700;
560
+ letter-spacing: 0.25em;
561
+ }
562
+
563
+ .wrapper .title:before
564
+ {
565
+ content: '';
566
+ position: absolute;
567
+ bottom: -38px;
568
+ left: -35px;
569
+ width: 35px;
570
+ height: 38px;
571
+ background: url('images/shadow.png');
572
+ }
573
+
574
+ .wrapper .title:after
575
+ {
576
+ content: '';
577
+ position: absolute;
578
+ bottom: -38px;
579
+ right: -35px;
580
+ width: 35px;
581
+ height: 38px;
582
+ background: url('images/shadow.png');
583
+ -moz-transform: scaleX(-1);
584
+ -webkit-transform: scaleX(-1);
585
+ -o-transform: scaleX(-1);
586
+ -ms-transform: scaleX(-1);
587
+ transform: scaleX(-1);
588
+ }
589
+
590
+ .wrapper.style1
591
+ {
592
+ background: #e97770 url('images/overlay.png');
593
+ color: #eee;
594
+ color: rgba(255,255,255,0.75);
595
+ }
596
+
597
+ .wrapper.style1 .title
598
+ {
599
+ background: #e97770 url('images/overlay.png');
600
+ color: #fff;
601
+ }
602
+
603
+ .wrapper.style1 h1,
604
+ .wrapper.style1 h2,
605
+ .wrapper.style1 h3,
606
+ .wrapper.style1 h4,
607
+ .wrapper.style1 h5,
608
+ .wrapper.style1 h6,
609
+ .wrapper.style1 strong,
610
+ .wrapper.style1 b,
611
+ .wrapper.style1 a
612
+ {
613
+ color: #fff;
614
+ }
615
+
616
+ .wrapper.style2
617
+ {
618
+ background: #fff;
619
+ }
620
+
621
+ .wrapper.style2 .title
622
+ {
623
+ background: #fff;
624
+ color: #484d55;
625
+ }
626
+
627
+ .wrapper.style3
628
+ {
629
+ background: #f3f3f3 url('images/overlay.png');
630
+ }
631
+
632
+ .wrapper.style3 .title
633
+ {
634
+ background: #f3f3f3 url('images/overlay.png');
635
+ color: #484d55;
636
+ }
637
+
638
+ .wrapper.style3 .image
639
+ {
640
+ border: solid 10px #fff;
641
+ }
642
+
643
+ #header-wrapper
644
+ {
645
+ background: url('../images/banner.jpg') center center;
646
+ background-size: cover;
647
+ }
648
+
649
+ #header-wrapper:before
650
+ {
651
+ content: '';
652
+ position: absolute;
653
+ top: 0;
654
+ left: 0;
655
+ width: 100%;
656
+ height: 100%;
657
+ background: url('images/overlay.png');
658
+ }
659
+
660
+ #footer-wrapper
661
+ {
662
+ background: #282b34 url('images/overlay.png');
663
+ color: #eee;
664
+ color: rgba(255,255,255,0.5);
665
+ }
666
+
667
+ #footer-wrapper h1,
668
+ #footer-wrapper h2,
669
+ #footer-wrapper h3,
670
+ #footer-wrapper h4,
671
+ #footer-wrapper h5,
672
+ #footer-wrapper h6,
673
+ #footer-wrapper strong,
674
+ #footer-wrapper b,
675
+ #footer-wrapper a
676
+ {
677
+ color: #fff;
678
+ }
679
+
680
+ #footer-wrapper hr
681
+ {
682
+ border-top-color: #333;
683
+ border-top-color: rgba(255,255,255,0.05);
684
+ }
685
+
686
+ #footer-wrapper form
687
+ {
688
+ }
689
+
690
+ #footer-wrapper form input[type="text"],
691
+ #footer-wrapper form input[type="email"],
692
+ #footer-wrapper form input[type="password"],
693
+ #footer-wrapper form select,
694
+ #footer-wrapper form textarea
695
+ {
696
+ background: #ccc;
697
+ box-shadow: none;
698
+ }
699
+
700
+ #footer-wrapper form input[type="text"]:focus,
701
+ #footer-wrapper form input[type="email"]:focus,
702
+ #footer-wrapper form input[type="password"]:focus,
703
+ #footer-wrapper form select:focus,
704
+ #footer-wrapper form textarea:focus
705
+ {
706
+ background: #fff;
707
+ }
708
+
709
+ #footer-wrapper input[type="button"].style2,
710
+ #footer-wrapper input[type="submit"].style2,
711
+ #footer-wrapper input[type="reset"].style2,
712
+ #footer-wrapper .button.style2
713
+ {
714
+ color: #aaa;
715
+ box-shadow: inset 0px 0px 2px 0px rgba(255,255,255,0.5);
716
+ }
717
+
718
+ #footer-wrapper input[type="button"].style2:hover,
719
+ #footer-wrapper input[type="submit"].style2:hover,
720
+ #footer-wrapper input[type="reset"].style2:hover,
721
+ #footer-wrapper .button.style2:hover
722
+ {
723
+ color: #ccc;
724
+ box-shadow: inset 0px 0px 2px 0px rgba(255,255,255,0.65);
725
+ }
726
+
727
+ #footer-wrapper input[type="button"].style2:active,
728
+ #footer-wrapper input[type="submit"].style2:active,
729
+ #footer-wrapper input[type="reset"].style2:active,
730
+ #footer-wrapper .button.style2:active
731
+ {
732
+ box-shadow: inset 0px 0px 2px 0px rgba(255,255,255,0.75);
733
+ }
734
+
735
+ #footer-wrapper .title
736
+ {
737
+ background: #282b34 url('images/overlay.png');
738
+ color: #eee;
739
+ }
740
+
741
+ #footer-wrapper header.style1
742
+ {
743
+ }
744
+
745
+ #footer-wrapper header.style1 h2
746
+ {
747
+ color: #fff;
748
+ }
749
+
750
+ #footer-wrapper header.style1 .p
751
+ {
752
+ color: inherit;
753
+ }
754
+
755
+ #footer-wrapper .feature-list
756
+ {
757
+ }
758
+
759
+ #footer-wrapper .feature-list section
760
+ {
761
+ border-top-color: #333;
762
+ border-top-color: rgba(255,255,255,0.05);
763
+ }
764
+
765
+ #footer-wrapper .feature-list h3
766
+ {
767
+ }
768
+
769
+ #footer-wrapper .feature-list h3:before
770
+ {
771
+ background: #3d4249 url('images/overlay.png');
772
+ }
773
+
774
+ /*********************************************************************************/
775
+ /* Logo */
776
+ /*********************************************************************************/
777
+
778
+ #logo
779
+ {
780
+ }
781
+
782
+ #logo h1
783
+ {
784
+ font-weight: 900;
785
+ text-transform: uppercase;
786
+ color: #fff;
787
+ }
788
+
789
+ #logo p
790
+ {
791
+ color: #eee;
792
+ color: rgba(255,255,255,0.5);
793
+ text-transform: uppercase;
794
+ }
795
+
796
+ /*********************************************************************************/
797
+ /* Intro */
798
+ /*********************************************************************************/
799
+
800
+ #intro
801
+ {
802
+ }
803
+
804
+ #intro > .style1
805
+ {
806
+ }
807
+
808
+ #intro > .style2
809
+ {
810
+ font-weight: 700;
811
+ color: #fff;
812
+ border-radius: 0.35em;
813
+ box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.25);
814
+ }
815
+
816
+ #intro > .style2 a
817
+ {
818
+ color: inherit;
819
+ text-decoration: none;
820
+ }
821
+
822
+ #intro > .style3
823
+ {
824
+ }
825
+
826
+ /*********************************************************************************/
827
+ /* Highlights */
828
+ /*********************************************************************************/
829
+
830
+ #highlights
831
+ {
832
+ }
833
+
834
+ #highlights .highlight
835
+ {
836
+ text-align: center;
837
+ }
838
+
839
+ #highlights .highlight h3
840
+ {
841
+ color: #e97770;
842
+ }
843
+
844
+ /*********************************************************************************/
845
+ /* Copyright */
846
+ /*********************************************************************************/
847
+
848
+ #copyright
849
+ {
850
+ text-align: center;
851
+ }
852
+
853
+ #copyright ul
854
+ {
855
+ display: inline-block;
856
+ border-radius: 0.35em;
857
+ box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.05);
858
+ color: #aaa;
859
+ color: rgba(255,255,255,0.25);
860
+ }
861
+
862
+ #copyright a
863
+ {
864
+ color: inherit;
865
+ }
866
+
867
+ #copyright a:hover
868
+ {
869
+ color: #fff;
870
+ }