staticmatic2 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. data/Gemfile +12 -0
  2. data/Gemfile.lock +27 -0
  3. data/LICENSE +20 -0
  4. data/README.markdown +107 -0
  5. data/Rakefile +45 -0
  6. data/VERSION.yml +5 -0
  7. data/bin/staticmatic +140 -0
  8. data/lib/staticmatic.rb +25 -0
  9. data/lib/staticmatic/base.rb +123 -0
  10. data/lib/staticmatic/compass.rb +5 -0
  11. data/lib/staticmatic/compass/app_integration.rb +18 -0
  12. data/lib/staticmatic/compass/configuration_defaults.rb +44 -0
  13. data/lib/staticmatic/compass/installer.rb +15 -0
  14. data/lib/staticmatic/configuration.rb +20 -0
  15. data/lib/staticmatic/deployers/aws-s3.rb +71 -0
  16. data/lib/staticmatic/deployers/config/amazon.yml +7 -0
  17. data/lib/staticmatic/error.rb +17 -0
  18. data/lib/staticmatic/helpers.rb +12 -0
  19. data/lib/staticmatic/helpers/assets_helper.rb +116 -0
  20. data/lib/staticmatic/helpers/current_path_helper.rb +22 -0
  21. data/lib/staticmatic/helpers/form_helper.rb +23 -0
  22. data/lib/staticmatic/helpers/render_helper.rb +13 -0
  23. data/lib/staticmatic/helpers/tag_helper.rb +35 -0
  24. data/lib/staticmatic/helpers/url_helper.rb +59 -0
  25. data/lib/staticmatic/mixins/build.rb +77 -0
  26. data/lib/staticmatic/mixins/helpers.rb +15 -0
  27. data/lib/staticmatic/mixins/render.rb +153 -0
  28. data/lib/staticmatic/mixins/rescue.rb +12 -0
  29. data/lib/staticmatic/mixins/server.rb +7 -0
  30. data/lib/staticmatic/mixins/setup.rb +16 -0
  31. data/lib/staticmatic/server.rb +86 -0
  32. data/lib/staticmatic/template_error.rb +44 -0
  33. data/lib/staticmatic/templates/rescues/default.haml +7 -0
  34. data/lib/staticmatic/templates/rescues/template.haml +18 -0
  35. data/spec/base_spec.rb +13 -0
  36. data/spec/compass_integration_spec.rb +27 -0
  37. data/spec/helpers/asset_helper_spec.rb +43 -0
  38. data/spec/helpers/custom_helper_spec.rb +18 -0
  39. data/spec/render_spec.rb +44 -0
  40. data/spec/rescue_spec.rb +36 -0
  41. data/spec/sandbox/test_site/config/compass.rb +1 -0
  42. data/spec/sandbox/test_site/config/site.rb +0 -0
  43. data/spec/sandbox/test_site/src/helpers/application_helper.rb +5 -0
  44. data/spec/sandbox/test_site/src/layouts/alternate_layout.haml +3 -0
  45. data/spec/sandbox/test_site/src/layouts/default.haml +7 -0
  46. data/spec/sandbox/test_site/src/layouts/projects.haml +1 -0
  47. data/spec/sandbox/test_site/src/pages/hello_world.erb +1 -0
  48. data/spec/sandbox/test_site/src/pages/index.haml +5 -0
  49. data/spec/sandbox/test_site/src/pages/layout_test.haml +2 -0
  50. data/spec/sandbox/test_site/src/pages/page_one.haml +3 -0
  51. data/spec/sandbox/test_site/src/pages/page_two.haml +2 -0
  52. data/spec/sandbox/test_site/src/pages/page_with_error.haml +5 -0
  53. data/spec/sandbox/test_site/src/pages/page_with_partial_error.haml +3 -0
  54. data/spec/sandbox/test_site/src/partials/menu.haml +1 -0
  55. data/spec/sandbox/test_site/src/partials/partial_with_error.haml +1 -0
  56. data/spec/sandbox/test_site/src/stylesheets/application.sass +5 -0
  57. data/spec/sandbox/test_site/src/stylesheets/css_with_error.sass +5 -0
  58. data/spec/sandbox/test_site/src/stylesheets/nested/a_nested_stylesheet.sass +0 -0
  59. data/spec/sandbox/test_site/src/stylesheets/partials/_forms.sass +2 -0
  60. data/spec/sandbox/test_site/src/stylesheets/sassy.scss +12 -0
  61. data/spec/server_spec.rb +11 -0
  62. data/spec/setup_spec.rb +22 -0
  63. data/spec/spec_helper.rb +14 -0
  64. data/spec/template_error_spec.rb +23 -0
  65. data/staticmatic.gemspec +158 -0
  66. data/website/Gemfile +1 -0
  67. data/website/config/site.rb +17 -0
  68. data/website/site/docs/compass_integration.html +70 -0
  69. data/website/site/docs/getting_started.html +49 -0
  70. data/website/site/docs/helpers.html +22 -0
  71. data/website/site/images/bycurve21.gif +0 -0
  72. data/website/site/images/curve21.jpg +0 -0
  73. data/website/site/images/homepage-build.jpg +0 -0
  74. data/website/site/images/homepage-previewing.jpg +0 -0
  75. data/website/site/images/homepage-templating.jpg +0 -0
  76. data/website/site/stylesheets/ie.css +5 -0
  77. data/website/site/stylesheets/print.css +372 -0
  78. data/website/site/stylesheets/screen.css +488 -0
  79. data/website/src/helpers/content_helper.rb +10 -0
  80. data/website/src/layouts/default.haml +15 -0
  81. data/website/src/pages/development.haml +9 -0
  82. data/website/src/pages/docs/_menu.haml +4 -0
  83. data/website/src/pages/docs/_requires_prerelease.haml +4 -0
  84. data/website/src/pages/docs/compass_integration.haml +54 -0
  85. data/website/src/pages/docs/getting_started.haml +31 -0
  86. data/website/src/pages/docs/helpers.haml +1 -0
  87. data/website/src/pages/index.haml +27 -0
  88. data/website/src/stylesheets/_base.scss +43 -0
  89. data/website/src/stylesheets/_defaults.scss +260 -0
  90. data/website/src/stylesheets/ie.scss +10 -0
  91. data/website/src/stylesheets/print.scss +33 -0
  92. data/website/src/stylesheets/screen.scss +73 -0
  93. metadata +238 -0
@@ -0,0 +1,488 @@
1
+ /* Reset --------------------------------------------------------------*/
2
+ /* line 14, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
3
+ html, body, div, span, applet, object, iframe,
4
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
5
+ a, abbr, acronym, address, big, cite, code,
6
+ del, dfn, em, font, img, ins, kbd, q, s, samp,
7
+ small, strike, strong, sub, sup, tt, var,
8
+ dl, dt, dd, ol, ul, li,
9
+ fieldset, form, label, legend,
10
+ table, caption, tbody, tfoot, thead, tr, th, td {
11
+ margin: 0;
12
+ padding: 0;
13
+ border: 0;
14
+ outline: 0;
15
+ font-weight: inherit;
16
+ font-style: inherit;
17
+ font-size: 100%;
18
+ font-family: inherit;
19
+ vertical-align: baseline;
20
+ }
21
+
22
+ /* line 17, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
23
+ body {
24
+ line-height: 1;
25
+ color: black;
26
+ background: white;
27
+ }
28
+
29
+ /* line 19, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
30
+ ol, ul {
31
+ list-style: none;
32
+ }
33
+
34
+ /* line 21, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
35
+ table {
36
+ border-collapse: separate;
37
+ border-spacing: 0;
38
+ vertical-align: middle;
39
+ }
40
+
41
+ /* line 23, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
42
+ caption, th, td {
43
+ text-align: left;
44
+ font-weight: normal;
45
+ vertical-align: middle;
46
+ }
47
+
48
+ /* line 25, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
49
+ q, blockquote {
50
+ quotes: "" "";
51
+ }
52
+ /* line 96, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
53
+ q:before, q:after, blockquote:before, blockquote:after {
54
+ content: "";
55
+ }
56
+
57
+ /* line 27, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
58
+ a img {
59
+ border: none;
60
+ }
61
+
62
+ /* HTML5 Reset --------------------------------------------------------------*/
63
+ /* line 107, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
64
+ section, article, aside, header, footer, nav, dialog, figure {
65
+ display: block;
66
+ }
67
+
68
+ /* Body --------------------------------------------------------------*/
69
+ /* line 13, website/src/stylesheets/./_defaults.scss */
70
+ body {
71
+ font-family: 'Adobe Caslon Pro', Caslon, Baskerville, Palatino, 'Palatino Linotype', "Hoefler Text", Garamond, "URW Palladio L", "Book Antiqua", Georgia, serif;
72
+ color: #4c4c4c;
73
+ }
74
+
75
+ /* Links --------------------------------------------------------------*/
76
+ /* line 21, website/src/stylesheets/./_defaults.scss */
77
+ a:link, a:visited {
78
+ color: #005498;
79
+ }
80
+ /* line 24, website/src/stylesheets/./_defaults.scss */
81
+ a:focus, a:hover, a:active {
82
+ color: #00467f;
83
+ text-decoration: none;
84
+ }
85
+ /* line 28, website/src/stylesheets/./_defaults.scss */
86
+ a img {
87
+ border: none;
88
+ }
89
+
90
+ /* Headings --------------------------------------------------------------*/
91
+ /* line 35, website/src/stylesheets/./_defaults.scss */
92
+ h1, h2, h3, h4, h5, h6 {
93
+ font-weight: normal;
94
+ }
95
+ /* line 37, website/src/stylesheets/./_defaults.scss */
96
+ h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
97
+ margin: 0;
98
+ }
99
+
100
+ /* line 42, website/src/stylesheets/./_defaults.scss */
101
+ h1 {
102
+ font-size: 2em;
103
+ line-height: 1.5em;
104
+ margin-bottom: 0.75em;
105
+ }
106
+
107
+ /* line 47, website/src/stylesheets/./_defaults.scss */
108
+ h2 {
109
+ font-size: 1.5em;
110
+ line-height: 1em;
111
+ margin-bottom: 1em;
112
+ }
113
+
114
+ /* line 52, website/src/stylesheets/./_defaults.scss */
115
+ h3 {
116
+ font-size: 1.125em;
117
+ line-height: 1.333em;
118
+ margin-bottom: 1.333em;
119
+ }
120
+
121
+ /* line 57, website/src/stylesheets/./_defaults.scss */
122
+ h4 {
123
+ font-size: 1em;
124
+ line-height: 1.5em;
125
+ margin-bottom: 1.5em;
126
+ }
127
+
128
+ /* line 62, website/src/stylesheets/./_defaults.scss */
129
+ h5, h6 {
130
+ margin-bottom: 1.5em;
131
+ font-weight: bold;
132
+ }
133
+
134
+ /* Text --------------------------------------------------------------*/
135
+ /* line 69, website/src/stylesheets/./_defaults.scss */
136
+ cite, em, dfn {
137
+ font-style: italic;
138
+ }
139
+
140
+ /* line 73, website/src/stylesheets/./_defaults.scss */
141
+ strong, dfn {
142
+ font-weight: bold;
143
+ }
144
+
145
+ /* line 77, website/src/stylesheets/./_defaults.scss */
146
+ sup, sub {
147
+ line-height: 0;
148
+ }
149
+
150
+ /* line 81, website/src/stylesheets/./_defaults.scss */
151
+ abbr, acronym {
152
+ border-bottom: 1px dotted;
153
+ cursor: help;
154
+ }
155
+
156
+ /* line 86, website/src/stylesheets/./_defaults.scss */
157
+ address {
158
+ margin-bottom: 1.5em;
159
+ font-style: italic;
160
+ }
161
+
162
+ /* line 91, website/src/stylesheets/./_defaults.scss */
163
+ ins {
164
+ text-decoration: underline;
165
+ }
166
+
167
+ /* line 95, website/src/stylesheets/./_defaults.scss */
168
+ del {
169
+ text-decoration: line-through;
170
+ }
171
+
172
+ /* line 99, website/src/stylesheets/./_defaults.scss */
173
+ pre, code, tt, kbd {
174
+ font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, serif;
175
+ font-size: 0.9em;
176
+ }
177
+
178
+ /* line 111, website/src/stylesheets/./_defaults.scss */
179
+ pre {
180
+ white-space: pre;
181
+ }
182
+
183
+ /* line 115, website/src/stylesheets/./_defaults.scss */
184
+ code {
185
+ display: block;
186
+ }
187
+
188
+ /* line 119, website/src/stylesheets/./_defaults.scss */
189
+ q {
190
+ font-style: italic;
191
+ }
192
+ /* line 121, website/src/stylesheets/./_defaults.scss */
193
+ q em {
194
+ font-style: normal;
195
+ }
196
+
197
+ /* line 126, website/src/stylesheets/./_defaults.scss */
198
+ p {
199
+ margin-bottom: 1.5em;
200
+ }
201
+
202
+ /* line 130, website/src/stylesheets/./_defaults.scss */
203
+ blockquote, q {
204
+ quotes: "" "";
205
+ }
206
+
207
+ /* line 134, website/src/stylesheets/./_defaults.scss */
208
+ blockquote {
209
+ margin: 1.5em;
210
+ margin-left: -1.5em;
211
+ padding-left: 1.5em;
212
+ border-left: 1px solid;
213
+ font-family: 'Adobe Caslon Pro', Caslon, Baskerville, Palatino, 'Palatino Linotype', "Hoefler Text", Garamond, "URW Palladio L", "Book Antiqua", Georgia, serif;
214
+ font-style: italic;
215
+ }
216
+
217
+ /* line 145, website/src/stylesheets/./_defaults.scss */
218
+ blockquote:before, blockquote:after, q:before, q:after {
219
+ content: "";
220
+ }
221
+
222
+ /* Replaced --------------------------------------------------------------*/
223
+ /* line 152, website/src/stylesheets/./_defaults.scss */
224
+ img {
225
+ vertical-align: bottom;
226
+ }
227
+
228
+ /* Lists --------------------------------------------------------------*/
229
+ /* line 173, website/src/stylesheets/./_defaults.scss */
230
+ ol {
231
+ margin: 0 1.5em 1.5em 0;
232
+ list-style: decimal;
233
+ }
234
+
235
+ /* line 177, website/src/stylesheets/./_defaults.scss */
236
+ ul {
237
+ margin: 0 1.5em 1.5em 0;
238
+ list-style: disc;
239
+ }
240
+
241
+ /* line 182, website/src/stylesheets/./_defaults.scss */
242
+ li ul, li ol {
243
+ list-style-type: circle;
244
+ margin: 0 1.5em 0.75em;
245
+ }
246
+
247
+ /* line 188, website/src/stylesheets/./_defaults.scss */
248
+ dl {
249
+ margin-bottom: 1.5em;
250
+ border-top-style: solid;
251
+ border-top-width: 0.063em;
252
+ padding-top: 1.438em;
253
+ }
254
+ /* line 191, website/src/stylesheets/./_defaults.scss */
255
+ dl dt {
256
+ font-size: 1.125em;
257
+ line-height: 1.333em;
258
+ margin-bottom: 0.667em;
259
+ }
260
+
261
+ /* line 197, website/src/stylesheets/./_defaults.scss */
262
+ dd {
263
+ margin-bottom: 1.5em;
264
+ border-bottom-style: solid;
265
+ border-bottom-width: 0.063em;
266
+ padding-bottom: 1.438em;
267
+ }
268
+
269
+ /* Tables --------------------------------------------------------------*/
270
+ /* tables still need 'cellspacing="0"' in the markup */
271
+ /* line 205, website/src/stylesheets/./_defaults.scss */
272
+ table {
273
+ margin-bottom: 1.5em;
274
+ width: 100%;
275
+ border-collapse: separate;
276
+ border-spacing: 0;
277
+ }
278
+
279
+ /* line 212, website/src/stylesheets/./_defaults.scss */
280
+ table, td, th {
281
+ vertical-align: top;
282
+ }
283
+
284
+ /* line 216, website/src/stylesheets/./_defaults.scss */
285
+ th, thead th {
286
+ font-weight: bold;
287
+ }
288
+
289
+ /* line 220, website/src/stylesheets/./_defaults.scss */
290
+ th, td, caption {
291
+ padding: 0.75em;
292
+ text-align: left;
293
+ font-weight: normal;
294
+ }
295
+
296
+ /* line 226, website/src/stylesheets/./_defaults.scss */
297
+ th, td {
298
+ border-bottom-style: solid;
299
+ border-bottom-width: 0.063em;
300
+ padding-bottom: 0.688em;
301
+ }
302
+
303
+ /* line 230, website/src/stylesheets/./_defaults.scss */
304
+ tfoot {
305
+ font-size: 0.875em;
306
+ line-height: 1.714em;
307
+ }
308
+
309
+ /* line 234, website/src/stylesheets/./_defaults.scss */
310
+ caption {
311
+ font-size: 1.5em;
312
+ line-height: 1em;
313
+ margin-bottom: 1em;
314
+ }
315
+
316
+ /* Forms --------------------------------------------------------------*/
317
+ /* line 241, website/src/stylesheets/./_defaults.scss */
318
+ fieldset {
319
+ margin-bottom: 1.5em;
320
+ border-style: solid;
321
+ border-width: 0.063em;
322
+ padding: 1.438em;
323
+ }
324
+
325
+ /* line 246, website/src/stylesheets/./_defaults.scss */
326
+ legend {
327
+ font-size: 1.125em;
328
+ line-height: 1.333em;
329
+ font-weight: bold;
330
+ }
331
+
332
+ /* line 251, website/src/stylesheets/./_defaults.scss */
333
+ label {
334
+ font-weight: bold;
335
+ }
336
+
337
+ /* line 255, website/src/stylesheets/./_defaults.scss */
338
+ textarea, input:not([type="radio"]) {
339
+ -moz-box-sizing: border-box;
340
+ -webkit-box-sizing: border-box;
341
+ -ms-box-sizing: border-box;
342
+ box-sizing: border-box;
343
+ width: 100%;
344
+ }
345
+
346
+ /* line 29, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-susy-plugin-0.7.0/sass/susy/././_vertical_rhythm.scss */
347
+ body {
348
+ font-size: 100%;
349
+ line-height: 1.5em;
350
+ }
351
+
352
+ /* line 33, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-susy-plugin-0.7.0/sass/susy/././_vertical_rhythm.scss */
353
+ html > body {
354
+ font-size: 16px;
355
+ }
356
+
357
+ /* line 18, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-susy-plugin-0.7.0/sass/susy/_susy.scss */
358
+ body {
359
+ text-align: center;
360
+ }
361
+
362
+ /* line 5 */
363
+ body {
364
+ background-color: #222;
365
+ }
366
+
367
+ /* line 10 */
368
+ #page {
369
+ overflow: hidden;
370
+ display: inline-block;
371
+ text-align: left;
372
+ margin-left: auto;
373
+ margin-right: auto;
374
+ width: 61em;
375
+ max-width: 100%;
376
+ background-color: #fff;
377
+ }
378
+ /* line 8, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/utilities/general/./_hacks.scss */
379
+ #page {
380
+ display: block;
381
+ }
382
+
383
+ /* line 16 */
384
+ #header {
385
+ background-color: #550000;
386
+ overflow: hidden;
387
+ display: inline-block;
388
+ text-align: left;
389
+ margin-left: auto;
390
+ margin-right: auto;
391
+ width: 61em;
392
+ max-width: 100%;
393
+ -moz-box-shadow: #333333 1px 1px 5px;
394
+ -webkit-box-shadow: #333333 1px 1px 5px;
395
+ -o-box-shadow: #333333 1px 1px 5px;
396
+ box-shadow: #333333 1px 1px 5px;
397
+ }
398
+ /* line 8, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/utilities/general/./_hacks.scss */
399
+ #header {
400
+ display: block;
401
+ }
402
+ /* line 20 */
403
+ #header #logo {
404
+ display: inline;
405
+ float: left;
406
+ width: 14.754%;
407
+ margin-right: 1.639%;
408
+ margin-left: 1.639%;
409
+ font-size: 2em;
410
+ padding: 1em 0.5em;
411
+ color: #fff;
412
+ font-family: 'Adobe Caslon Pro', Caslon, Baskerville, Palatino, 'Palatino Linotype', "Hoefler Text", Garamond, "URW Palladio L", "Book Antiqua", Georgia, serif;
413
+ }
414
+
415
+ /* line 32 */
416
+ #menu {
417
+ display: inline;
418
+ float: left;
419
+ width: 31.148%;
420
+ margin-right: 1.639%;
421
+ display: inline;
422
+ float: right;
423
+ margin-right: 1.639%;
424
+ /* ugly hacks for IE6-7 */
425
+ #margin-left: -1em;
426
+ -moz-border-radius: 5px;
427
+ -webkit-border-radius: 5px;
428
+ -o-border-radius: 5px;
429
+ -ms-border-radius: 5px;
430
+ -khtml-border-radius: 5px;
431
+ border-radius: 5px;
432
+ margin: 1em;
433
+ }
434
+ /* line 39 */
435
+ #menu ul {
436
+ padding: 1em;
437
+ list-style: none;
438
+ list-style-type: none;
439
+ margin: 0px;
440
+ padding: 0px;
441
+ display: inline;
442
+ }
443
+ /* line 11, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss */
444
+ #menu ul li {
445
+ list-style-image: none;
446
+ list-style-type: none;
447
+ margin-left: 0px;
448
+ }
449
+ /* line 8, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
450
+ #menu ul li {
451
+ margin: 0px;
452
+ padding: 0px;
453
+ display: inline;
454
+ }
455
+ /* line 44 */
456
+ #menu ul li {
457
+ padding: 0;
458
+ }
459
+ /* line 47 */
460
+ #menu ul li a {
461
+ color: #fff;
462
+ }
463
+
464
+ /* line 54 */
465
+ #content {
466
+ padding: 2em;
467
+ display: inline;
468
+ float: left;
469
+ width: 63.934%;
470
+ margin-right: 1.639%;
471
+ margin-left: 1.639%;
472
+ }
473
+
474
+ /* Styles --------------------------------------------------------------*/
475
+ /* line 66 */
476
+ pre {
477
+ font-size: 0.9em;
478
+ background-color: #efefef;
479
+ border: 1px solid #aaa;
480
+ -moz-border-radius: 5px;
481
+ -webkit-border-radius: 5px;
482
+ -o-border-radius: 5px;
483
+ -ms-border-radius: 5px;
484
+ -khtml-border-radius: 5px;
485
+ border-radius: 5px;
486
+ padding: 1em;
487
+ margin-bottom: 0.5em;
488
+ }