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
data/website/Gemfile ADDED
@@ -0,0 +1 @@
1
+ gem
@@ -0,0 +1,17 @@
1
+ # Default is 3000
2
+ # configuration.preview_server_port = 3000
3
+
4
+ # Default is localhost
5
+ # configuration.preview_server_host = "localhost"
6
+
7
+ # Default is true
8
+ # When false .html & index.html get stripped off generated urls
9
+ # configuration.use_extensions_for_page_links = true
10
+
11
+ # Default is an empty hash
12
+ # configuration.sass_options = {}
13
+
14
+ # Default is an empty hash
15
+ # http://haml-lang.com/docs/yardoc/file.HAML_REFERENCE.html#options
16
+ # configuration.haml_options = {}
17
+ require "susy"
@@ -0,0 +1,70 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html>
3
+ <head>
4
+ <title>StaticMatic Documentation</title>
5
+ <link href='/stylesheets/screen.css' media='screen' rel='stylesheet' />
6
+ </head>
7
+ <body>
8
+ <div id='page'>
9
+ <div id='header'>
10
+ <div id='logo'>StaticMatic</div>
11
+ <div id='menu'>
12
+ <ul>
13
+ <li><a href="/">Home</a></li>
14
+ <li><a href="/docs/getting_started.html">Documentation</a></li>
15
+ <li><a href="../development.html">Development</a></li>
16
+ </ul>
17
+ </div>
18
+ </div>
19
+ <div id='content'>
20
+ <h1>Compass Integration</h1>
21
+ <p class='notice'>
22
+ You'll need to install the pre-release version of StaticMatic to use this feature:
23
+ <kbd>gem install staticmatic --pre</kbd>
24
+ </p>
25
+ <ul><li><a href="#what_is_compass">What is Compass?</a></li><li><a href="#using_compass_with_staticmatic">Using Compass with StaticMatic</a></li><li><a href="#using_compasss_css_frameworks">Using Compass's CSS Frameworks</a></li></ul>
26
+ <p><a id="what_is_compass"></a></p>
27
+
28
+ <h2>What is Compass?</h2>
29
+
30
+ <p>Compass is simply awesome. It gives you a access huge amount of stylesheet libraries that take much of the duplication out of authoring stylesheets.</p>
31
+
32
+ <p>Check out the code for adding borders to a box:</p>
33
+
34
+ <pre><code>.box {&#x000A; @include border-radius(5px)&#x000A;}&#x000A;</code></pre>
35
+
36
+ <p>This compiles to:</p>
37
+
38
+ <pre><code>.box {&#x000A; -moz-border-radius: 5px;&#x000A; -webkit-border-radius: 5px;&#x000A; -o-border-radius: 5px;&#x000A; -ms-border-radius: 5px;&#x000A; -khtml-border-radius: 5px;&#x000A; border-radius: 5px;&#x000A;}&#x000A;</code></pre>
39
+
40
+ <p>Compass also comes with a port of the popular <a href="http://www.blueprintcss.org/">Blueprint</a> CSS framework and has many plugin frameworks such as <a href="http://susy.oddbird.net/">Susy</a> &amp; <a href="http://960.gs/">960.gs</a>.</p>
41
+
42
+ <p><a id="using_compass_with_staticmatic"></a></p>
43
+
44
+ <h2>Using Compass with StaticMatic</h2>
45
+
46
+ <p>StaticMatic works with Compass out of the box. You can start using all the great features Compass provides (<a href="http://compass-style.org/docs/reference/compass/">read about Compass's core framework here</a>).</p>
47
+
48
+ <p>It's also simple to customize the way Compass work. When you <a href="getting_started.html">setup your project</a>, you'll have a file called <kbd>config/compass.rb</kbd>. You can use this file to configure Compass:</p>
49
+
50
+ <pre><code>output_style = :compressed&#x000A;</code></pre>
51
+
52
+ <p>For a run down of what you can configure in <kbd>config/compass.rb</kbd>, see <a href="http://compass-style.org/docs/tutorials/configuration-reference/">The Compass Configuration Reference</a></p>
53
+
54
+ <p><a id="using_compasss_css_frameworks"></a></p>
55
+
56
+ <h2>Using Compass's CSS Frameworks</h2>
57
+
58
+ <p>Compass's command line tool can generate CSS framework base files for you. This works seemlessly with StaticMatic.</p>
59
+
60
+ <p>For example, if you'd like to use the Blueprint framework for your project simply run:</p>
61
+
62
+ <pre><code>&gt; compass install blueprint&#x000A;</code></pre>
63
+
64
+ <p>in your project directory. Compass will then install all of the base stylesheets you need to get started.</p>
65
+
66
+ <p><a href="http://compass-style.org/docs/tutorials/command-line/">Read more about Compass's command line tool here</a>.</p>
67
+ </div>
68
+ </div>
69
+ </body>
70
+ </html>
@@ -0,0 +1,49 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html>
3
+ <head>
4
+ <title>StaticMatic Documentation</title>
5
+ <link href='/stylesheets/screen.css' media='screen' rel='stylesheet' />
6
+ </head>
7
+ <body>
8
+ <div id='page'>
9
+ <div id='header'>
10
+ <div id='logo'>StaticMatic</div>
11
+ <div id='menu'>
12
+ <ul>
13
+ <li><a href="/">Home</a></li>
14
+ <li><a href="/docs/getting_started.html">Documentation</a></li>
15
+ <li><a href="../development.html">Development</a></li>
16
+ </ul>
17
+ </div>
18
+ </div>
19
+ <div id='content'>
20
+ <h1>Getting Started</h1>
21
+ <p>StaticMatic is designed to be quick &amp; easy to get up and running.</p>
22
+
23
+ <h2>Installing</h2>
24
+
25
+ <p>You'll need to have (Ruby)[http://ruby-lang.org] installed along with Ruby's package manager (RubyGems)[http://rubygems.org/pages/download]. If you're using OSX or Linux, chances are you're ready to go. If you're using Windows, you may need to install Rubyy using one of the packages found (here)[http://www.ruby-lang.org/en/downloads/].</p>
26
+
27
+ <p>To install StaticMatic, open a terminal window and run:</p>
28
+
29
+ <pre><code>&gt; gem install staticmatic&#x000A;</code></pre>
30
+
31
+ <p>If everything is set up correctly, you should now be able to run:</p>
32
+
33
+ <pre><code>&gt; staticmatic -v&#x000A;</code></pre>
34
+
35
+ <p>and see a version number.</p>
36
+
37
+ <p>Congratulations - you're ready to start creating your first StaticMatic site!</p>
38
+
39
+ <h2>Creating a site</h2>
40
+
41
+ <p>Open a terminal and run:</p>
42
+
43
+ <pre><code>&gt; staticmatic setup my-first-site&#x000A;</code></pre>
44
+
45
+ <p>and StaticMatic will create a set of files for you to get started.</p>
46
+ </div>
47
+ </div>
48
+ </body>
49
+ </html>
@@ -0,0 +1,22 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html>
3
+ <head>
4
+ <title>StaticMatic Documentation</title>
5
+ <link href='/stylesheets/screen.css' media='screen' rel='stylesheet' />
6
+ </head>
7
+ <body>
8
+ <div id='page'>
9
+ <div id='header'>
10
+ <div id='logo'>StaticMatic</div>
11
+ <div id='menu'>
12
+ <ul>
13
+ <li><a href="/">Home</a></li>
14
+ <li><a href="/docs/getting_started.html">Documentation</a></li>
15
+ <li><a href="../development.html">Development</a></li>
16
+ </ul>
17
+ </div>
18
+ </div>
19
+ <div id='content'><h1>Helpers</h1></div>
20
+ </div>
21
+ </body>
22
+ </html>
Binary file
Binary file
@@ -0,0 +1,5 @@
1
+ /* Welcome to Susy. Use this file to write IE specific override styles.
2
+ * Import this file using the following HTML or equivalent:
3
+ * <!--[if IE]>
4
+ * <link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
5
+ * <![endif]--> */
@@ -0,0 +1,372 @@
1
+ /* Welcome to Susy. Use this file to define print styles.
2
+ * Import this file using the following HTML or equivalent:
3
+ * <link href="/stylesheets/print.css" media="print" rel="stylesheet" type="text/css" /> */
4
+ /* Reset --------------------------------------------------------------*/
5
+ /* line 14, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
6
+ html, body, div, span, applet, object, iframe,
7
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
8
+ a, abbr, acronym, address, big, cite, code,
9
+ del, dfn, em, font, img, ins, kbd, q, s, samp,
10
+ small, strike, strong, sub, sup, tt, var,
11
+ dl, dt, dd, ol, ul, li,
12
+ fieldset, form, label, legend,
13
+ table, caption, tbody, tfoot, thead, tr, th, td {
14
+ margin: 0;
15
+ padding: 0;
16
+ border: 0;
17
+ outline: 0;
18
+ font-weight: inherit;
19
+ font-style: inherit;
20
+ font-size: 100%;
21
+ font-family: inherit;
22
+ vertical-align: baseline;
23
+ }
24
+
25
+ /* line 17, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
26
+ body {
27
+ line-height: 1;
28
+ color: black;
29
+ background: white;
30
+ }
31
+
32
+ /* line 19, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
33
+ ol, ul {
34
+ list-style: none;
35
+ }
36
+
37
+ /* line 21, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
38
+ table {
39
+ border-collapse: separate;
40
+ border-spacing: 0;
41
+ vertical-align: middle;
42
+ }
43
+
44
+ /* line 23, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
45
+ caption, th, td {
46
+ text-align: left;
47
+ font-weight: normal;
48
+ vertical-align: middle;
49
+ }
50
+
51
+ /* line 25, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
52
+ q, blockquote {
53
+ quotes: "" "";
54
+ }
55
+ /* line 96, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
56
+ q:before, q:after, blockquote:before, blockquote:after {
57
+ content: "";
58
+ }
59
+
60
+ /* line 27, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
61
+ a img {
62
+ border: none;
63
+ }
64
+
65
+ /* HTML5 Reset --------------------------------------------------------------*/
66
+ /* line 107, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
67
+ section, article, aside, header, footer, nav, dialog, figure {
68
+ display: block;
69
+ }
70
+
71
+ /* Body --------------------------------------------------------------*/
72
+ /* line 13, website/src/stylesheets/./_defaults.scss */
73
+ body {
74
+ font-family: 'Adobe Caslon Pro', Caslon, Baskerville, Palatino, 'Palatino Linotype', "Hoefler Text", Garamond, "URW Palladio L", "Book Antiqua", Georgia, serif;
75
+ color: #4c4c4c;
76
+ }
77
+
78
+ /* Links --------------------------------------------------------------*/
79
+ /* line 21, website/src/stylesheets/./_defaults.scss */
80
+ a:link, a:visited {
81
+ color: #005498;
82
+ }
83
+ /* line 24, website/src/stylesheets/./_defaults.scss */
84
+ a:focus, a:hover, a:active {
85
+ color: #00467f;
86
+ text-decoration: none;
87
+ }
88
+ /* line 28, website/src/stylesheets/./_defaults.scss */
89
+ a img {
90
+ border: none;
91
+ }
92
+
93
+ /* Headings --------------------------------------------------------------*/
94
+ /* line 35, website/src/stylesheets/./_defaults.scss */
95
+ h1, h2, h3, h4, h5, h6 {
96
+ font-weight: normal;
97
+ }
98
+ /* line 37, website/src/stylesheets/./_defaults.scss */
99
+ h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
100
+ margin: 0;
101
+ }
102
+
103
+ /* line 42, website/src/stylesheets/./_defaults.scss */
104
+ h1 {
105
+ font-size: 2em;
106
+ line-height: 1.5em;
107
+ margin-bottom: 0.75em;
108
+ }
109
+
110
+ /* line 47, website/src/stylesheets/./_defaults.scss */
111
+ h2 {
112
+ font-size: 1.5em;
113
+ line-height: 1em;
114
+ margin-bottom: 1em;
115
+ }
116
+
117
+ /* line 52, website/src/stylesheets/./_defaults.scss */
118
+ h3 {
119
+ font-size: 1.125em;
120
+ line-height: 1.333em;
121
+ margin-bottom: 1.333em;
122
+ }
123
+
124
+ /* line 57, website/src/stylesheets/./_defaults.scss */
125
+ h4 {
126
+ font-size: 1em;
127
+ line-height: 1.5em;
128
+ margin-bottom: 1.5em;
129
+ }
130
+
131
+ /* line 62, website/src/stylesheets/./_defaults.scss */
132
+ h5, h6 {
133
+ margin-bottom: 1.5em;
134
+ font-weight: bold;
135
+ }
136
+
137
+ /* Text --------------------------------------------------------------*/
138
+ /* line 69, website/src/stylesheets/./_defaults.scss */
139
+ cite, em, dfn {
140
+ font-style: italic;
141
+ }
142
+
143
+ /* line 73, website/src/stylesheets/./_defaults.scss */
144
+ strong, dfn {
145
+ font-weight: bold;
146
+ }
147
+
148
+ /* line 77, website/src/stylesheets/./_defaults.scss */
149
+ sup, sub {
150
+ line-height: 0;
151
+ }
152
+
153
+ /* line 81, website/src/stylesheets/./_defaults.scss */
154
+ abbr, acronym {
155
+ border-bottom: 1px dotted;
156
+ cursor: help;
157
+ }
158
+
159
+ /* line 86, website/src/stylesheets/./_defaults.scss */
160
+ address {
161
+ margin-bottom: 1.5em;
162
+ font-style: italic;
163
+ }
164
+
165
+ /* line 91, website/src/stylesheets/./_defaults.scss */
166
+ ins {
167
+ text-decoration: underline;
168
+ }
169
+
170
+ /* line 95, website/src/stylesheets/./_defaults.scss */
171
+ del {
172
+ text-decoration: line-through;
173
+ }
174
+
175
+ /* line 99, website/src/stylesheets/./_defaults.scss */
176
+ pre, code, tt, kbd {
177
+ font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, serif;
178
+ font-size: 0.9em;
179
+ }
180
+
181
+ /* line 111, website/src/stylesheets/./_defaults.scss */
182
+ pre {
183
+ white-space: pre;
184
+ }
185
+
186
+ /* line 115, website/src/stylesheets/./_defaults.scss */
187
+ code {
188
+ display: block;
189
+ }
190
+
191
+ /* line 119, website/src/stylesheets/./_defaults.scss */
192
+ q {
193
+ font-style: italic;
194
+ }
195
+ /* line 121, website/src/stylesheets/./_defaults.scss */
196
+ q em {
197
+ font-style: normal;
198
+ }
199
+
200
+ /* line 126, website/src/stylesheets/./_defaults.scss */
201
+ p {
202
+ margin-bottom: 1.5em;
203
+ }
204
+
205
+ /* line 130, website/src/stylesheets/./_defaults.scss */
206
+ blockquote, q {
207
+ quotes: "" "";
208
+ }
209
+
210
+ /* line 134, website/src/stylesheets/./_defaults.scss */
211
+ blockquote {
212
+ margin: 1.5em;
213
+ margin-left: -1.5em;
214
+ padding-left: 1.5em;
215
+ border-left: 1px solid;
216
+ font-family: 'Adobe Caslon Pro', Caslon, Baskerville, Palatino, 'Palatino Linotype', "Hoefler Text", Garamond, "URW Palladio L", "Book Antiqua", Georgia, serif;
217
+ font-style: italic;
218
+ }
219
+
220
+ /* line 145, website/src/stylesheets/./_defaults.scss */
221
+ blockquote:before, blockquote:after, q:before, q:after {
222
+ content: "";
223
+ }
224
+
225
+ /* Replaced --------------------------------------------------------------*/
226
+ /* line 152, website/src/stylesheets/./_defaults.scss */
227
+ img {
228
+ vertical-align: bottom;
229
+ }
230
+
231
+ /* Lists --------------------------------------------------------------*/
232
+ /* line 173, website/src/stylesheets/./_defaults.scss */
233
+ ol {
234
+ margin: 0 1.5em 1.5em 0;
235
+ list-style: decimal;
236
+ }
237
+
238
+ /* line 177, website/src/stylesheets/./_defaults.scss */
239
+ ul {
240
+ margin: 0 1.5em 1.5em 0;
241
+ list-style: disc;
242
+ }
243
+
244
+ /* line 182, website/src/stylesheets/./_defaults.scss */
245
+ li ul, li ol {
246
+ list-style-type: circle;
247
+ margin: 0 1.5em 0.75em;
248
+ }
249
+
250
+ /* line 188, website/src/stylesheets/./_defaults.scss */
251
+ dl {
252
+ margin-bottom: 1.5em;
253
+ border-top-style: solid;
254
+ border-top-width: 0.063em;
255
+ padding-top: 1.438em;
256
+ }
257
+ /* line 191, website/src/stylesheets/./_defaults.scss */
258
+ dl dt {
259
+ font-size: 1.125em;
260
+ line-height: 1.333em;
261
+ margin-bottom: 0.667em;
262
+ }
263
+
264
+ /* line 197, website/src/stylesheets/./_defaults.scss */
265
+ dd {
266
+ margin-bottom: 1.5em;
267
+ border-bottom-style: solid;
268
+ border-bottom-width: 0.063em;
269
+ padding-bottom: 1.438em;
270
+ }
271
+
272
+ /* Tables --------------------------------------------------------------*/
273
+ /* tables still need 'cellspacing="0"' in the markup */
274
+ /* line 205, website/src/stylesheets/./_defaults.scss */
275
+ table {
276
+ margin-bottom: 1.5em;
277
+ width: 100%;
278
+ border-collapse: separate;
279
+ border-spacing: 0;
280
+ }
281
+
282
+ /* line 212, website/src/stylesheets/./_defaults.scss */
283
+ table, td, th {
284
+ vertical-align: top;
285
+ }
286
+
287
+ /* line 216, website/src/stylesheets/./_defaults.scss */
288
+ th, thead th {
289
+ font-weight: bold;
290
+ }
291
+
292
+ /* line 220, website/src/stylesheets/./_defaults.scss */
293
+ th, td, caption {
294
+ padding: 0.75em;
295
+ text-align: left;
296
+ font-weight: normal;
297
+ }
298
+
299
+ /* line 226, website/src/stylesheets/./_defaults.scss */
300
+ th, td {
301
+ border-bottom-style: solid;
302
+ border-bottom-width: 0.063em;
303
+ padding-bottom: 0.688em;
304
+ }
305
+
306
+ /* line 230, website/src/stylesheets/./_defaults.scss */
307
+ tfoot {
308
+ font-size: 0.875em;
309
+ line-height: 1.714em;
310
+ }
311
+
312
+ /* line 234, website/src/stylesheets/./_defaults.scss */
313
+ caption {
314
+ font-size: 1.5em;
315
+ line-height: 1em;
316
+ margin-bottom: 1em;
317
+ }
318
+
319
+ /* Forms --------------------------------------------------------------*/
320
+ /* line 241, website/src/stylesheets/./_defaults.scss */
321
+ fieldset {
322
+ margin-bottom: 1.5em;
323
+ border-style: solid;
324
+ border-width: 0.063em;
325
+ padding: 1.438em;
326
+ }
327
+
328
+ /* line 246, website/src/stylesheets/./_defaults.scss */
329
+ legend {
330
+ font-size: 1.125em;
331
+ line-height: 1.333em;
332
+ font-weight: bold;
333
+ }
334
+
335
+ /* line 251, website/src/stylesheets/./_defaults.scss */
336
+ label {
337
+ font-weight: bold;
338
+ }
339
+
340
+ /* line 255, website/src/stylesheets/./_defaults.scss */
341
+ textarea, input:not([type="radio"]) {
342
+ -moz-box-sizing: border-box;
343
+ -webkit-box-sizing: border-box;
344
+ -ms-box-sizing: border-box;
345
+ box-sizing: border-box;
346
+ width: 100%;
347
+ }
348
+
349
+ /* Print Defaults --------------------------------------------------------------*/
350
+ /* line 12 */
351
+ nav {
352
+ display: none;
353
+ }
354
+
355
+ /* line 16 */
356
+ * {
357
+ float: none !important;
358
+ background: none;
359
+ }
360
+
361
+ /* line 21 */
362
+ body {
363
+ font-family: 'Adobe Caslon Pro', Caslon, Baskerville, Palatino, 'Palatino Linotype', "Hoefler Text", Garamond, "URW Palladio L", "Book Antiqua", Georgia, serif;
364
+ font-size: 12pt;
365
+ background: white;
366
+ color: black;
367
+ }
368
+
369
+ /* line 27 */
370
+ a:link:after, a:visited:after {
371
+ content: " (" attr(href) ") ";
372
+ }