toadstool 0.0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. data/Gemfile +11 -0
  2. data/Rakefile +4 -0
  3. data/config.rb +42 -0
  4. data/config.ru +6 -0
  5. data/doc-src/SASS-Guidelines.md +222 -0
  6. data/doc-src/What-Is-Toadstool.md +44 -0
  7. data/doc-src/changelog.md +29 -0
  8. data/doc-src/config.md +18 -0
  9. data/doc-src/mit_license.md +7 -0
  10. data/doc-src/mixin_directory.md +17 -0
  11. data/doc-src/sass.md +4 -0
  12. data/lib/RackServer.rb +93 -0
  13. data/lib/bin/toadstool +99 -0
  14. data/public/fonts/fontawesome-webfont.eot +0 -0
  15. data/public/fonts/fontawesome-webfont.svg +255 -0
  16. data/public/fonts/fontawesome-webfont.ttf +0 -0
  17. data/public/fonts/fontawesome-webfont.woff +0 -0
  18. data/public/fonts/zocial-regular-webfont.eot +0 -0
  19. data/public/fonts/zocial-regular-webfont.svg +138 -0
  20. data/public/fonts/zocial-regular-webfont.ttf +0 -0
  21. data/public/fonts/zocial-regular-webfont.woff +0 -0
  22. data/public/images/toadstool-logo.png +0 -0
  23. data/public/javascripts/application.js +74 -0
  24. data/public/javascripts/css_browser_selector.js +8 -0
  25. data/public/javascripts/lang-apollo.js +2 -0
  26. data/public/javascripts/lang-clj.js +18 -0
  27. data/public/javascripts/lang-css.js +2 -0
  28. data/public/javascripts/lang-go.js +1 -0
  29. data/public/javascripts/lang-hs.js +2 -0
  30. data/public/javascripts/lang-lisp.js +3 -0
  31. data/public/javascripts/lang-lua.js +2 -0
  32. data/public/javascripts/lang-ml.js +2 -0
  33. data/public/javascripts/lang-n.js +4 -0
  34. data/public/javascripts/lang-proto.js +1 -0
  35. data/public/javascripts/lang-scala.js +2 -0
  36. data/public/javascripts/lang-sql.js +2 -0
  37. data/public/javascripts/lang-tex.js +1 -0
  38. data/public/javascripts/lang-vb.js +2 -0
  39. data/public/javascripts/lang-vhdl.js +3 -0
  40. data/public/javascripts/lang-wiki.js +2 -0
  41. data/public/javascripts/lang-xq.js +3 -0
  42. data/public/javascripts/lang-yaml.js +2 -0
  43. data/public/javascripts/modernizr.mods.js +22 -0
  44. data/public/javascripts/prettify.js +28 -0
  45. data/public/javascripts/selectivizr-min.js +5 -0
  46. data/public/stylesheets/style.css +615 -0
  47. data/public/stylesheets/toadstool.css +1643 -0
  48. data/readme.md +37 -0
  49. data/sass/_buttons.scss +20 -0
  50. data/sass/_config.scss +216 -0
  51. data/sass/_design.scss +6 -0
  52. data/sass/_forms.scss +18 -0
  53. data/sass/_modules.scss +12 -0
  54. data/sass/_reset.scss +5 -0
  55. data/sass/_typography.scss +93 -0
  56. data/sass/_ui_patterns.scss +0 -0
  57. data/sass/_web_fonts.scss +32 -0
  58. data/sass/buttons/_cupid_config.scss +20 -0
  59. data/sass/buttons/_minimal_config.scss +15 -0
  60. data/sass/color/_color_math.scss +63 -0
  61. data/sass/color/_extends.scss +291 -0
  62. data/sass/color/_grayscale_math.scss +10 -0
  63. data/sass/modules/example_module/_extends.scss +0 -0
  64. data/sass/modules/example_module/_mixins.scss +0 -0
  65. data/sass/modules/example_module/readme.md +96 -0
  66. data/sass/style.scss +45 -0
  67. data/sass/toadstool.scss +14 -0
  68. data/sass/ui_patterns/_color_grid.scss +286 -0
  69. data/sass/ui_patterns/_example.scss +0 -0
  70. data/toadstool.rb +84 -0
  71. data/views/abstract_colors.erb +1 -0
  72. data/views/alerts.erb +1 -0
  73. data/views/buttons.erb +1 -0
  74. data/views/color_palettes.erb +221 -0
  75. data/views/forms.erb +24 -0
  76. data/views/forms/disabled_button.erb +18 -0
  77. data/views/forms/password_input.erb +22 -0
  78. data/views/forms/primary_button.erb +18 -0
  79. data/views/forms/username_input.erb +23 -0
  80. data/views/grid.erb +127 -0
  81. data/views/grid24.erb +59 -0
  82. data/views/grids/grid_arguments.erb +22 -0
  83. data/views/grids/use_definition.erb +12 -0
  84. data/views/layout.erb +58 -0
  85. data/views/modules/example_module/module.erb +0 -0
  86. data/views/modules/example_module/module.js +0 -0
  87. data/views/modules/example_module/readme.md +29 -0
  88. data/views/modules/example_module/view.erb +0 -0
  89. data/views/modules/readme.md +10 -0
  90. data/views/semantic_colors.erb +1 -0
  91. data/views/shared/_html_example.erb +31 -0
  92. data/views/shared/_main_footer.erb +12 -0
  93. data/views/shared/_main_header.erb +4 -0
  94. data/views/shared/_main_nav.erb +16 -0
  95. data/views/shared/_sass_example.erb +10 -0
  96. data/views/shared/_toadstool_subheader.erb +6 -0
  97. data/views/typography.erb +17 -0
  98. data/views/typography/body_copy.erb +19 -0
  99. data/views/typography/body_links.erb +18 -0
  100. data/views/typography/general_typography.erb +19 -0
  101. data/views/typography/headings.erb +65 -0
  102. data/views/typography/vertical_rhythm.erb +13 -0
  103. data/views/typography/web_fonts.erb +11 -0
  104. data/views/ui_patterns/example.erb +1 -0
  105. data/views/ui_patterns/forms/text_input.erb +10 -0
  106. data/views/ui_patterns/readme.md +14 -0
  107. metadata +216 -0
@@ -0,0 +1,1643 @@
1
+ @import url(http://fonts.googleapis.com/css?family=Lato:400,700);
2
+ @font-face {
3
+ font-family: "FontAwesome";
4
+ font-style: normal;
5
+ font-weight: normal;
6
+ src: url("/fonts/fontawesome-webfont.eot");
7
+ src: url("/fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("/fonts/fontawesome-webfont.woff") format("woff"), url("/fonts/fontawesome-webfont.ttf") format("truetype"), url("/fonts/fontawesome-webfont.svg#fontawesome-webfont") format("svg");
8
+ }
9
+
10
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/web_fonts\/_font_awesome_pua\.scss}line{font-family:\000033}}
11
+ .emBox .screen-width:before {
12
+ font-family: 'FontAwesome';
13
+ }
14
+
15
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/web_fonts\/_font_awesome_pua\.scss}line{font-family:\00003185}}
16
+ .emBox .screen-width:before {
17
+ content: "\f0b2";
18
+ }
19
+
20
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_extends\.scss}line{font-family:\000036}}
21
+ .toadstool_main_header {
22
+ zoom: 1;
23
+ }
24
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003271}}
25
+ .toadstool_main_header:before {
26
+ content: "\0020";
27
+ display: block;
28
+ height: 0;
29
+ overflow: hidden;
30
+ }
31
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003277}}
32
+ .toadstool_main_header:after {
33
+ content: "\0020";
34
+ display: block;
35
+ height: 0;
36
+ overflow: hidden;
37
+ clear: both;
38
+ }
39
+
40
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_extends\.scss}line{font-family:\000038}}
41
+ [class*="toadstool"] h1 {
42
+ font-size: 2.66667em;
43
+ line-height: 1.125em;
44
+ margin-bottom: 0.5625em;
45
+ color: #333333;
46
+ font-weight: normal;
47
+ font-family: "Lato", sans-serif;
48
+ }
49
+
50
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_extends\.scss}line{font-family:\0000312}}
51
+ [class*="toadstool"] h2 {
52
+ font-size: 2em;
53
+ line-height: 1.5em;
54
+ margin-bottom: 0.75em;
55
+ color: #333333;
56
+ font-weight: normal;
57
+ font-family: "Lato", sans-serif;
58
+ }
59
+
60
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\000037}}
61
+ .grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12 {
62
+ margin-bottom: 1em;
63
+ text-align: center;
64
+ padding: 0.83333em 0;
65
+ -moz-box-shadow: inset rgba(51, 51, 51, 0.5) 0 0 1.66667em 0.83333em;
66
+ -webkit-box-shadow: inset rgba(51, 51, 51, 0.5) 0 0 1.66667em 0.83333em;
67
+ -o-box-shadow: inset rgba(51, 51, 51, 0.5) 0 0 1.66667em 0.83333em;
68
+ -ms-box-shadow: inset rgba(51, 51, 51, 0.5) 0 0 1.66667em 0.83333em;
69
+ box-shadow: inset rgba(51, 51, 51, 0.5) 0 0 1.66667em 0.83333em;
70
+ }
71
+
72
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000314}}
73
+ .grid-1 {
74
+ -moz-box-sizing: border-box;
75
+ -webkit-box-sizing: border-box;
76
+ -o-box-sizing: border-box;
77
+ -ms-box-sizing: border-box;
78
+ box-sizing: border-box;
79
+ float: left;
80
+ margin-left: 1.04167%;
81
+ margin-right: 1.04167%;
82
+ width: 6.25%;
83
+ }
84
+ @media screen and (max-width: 64em) and (orientation: portrait) {
85
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000314}}
86
+ .grid-1 {
87
+ -moz-box-sizing: border-box;
88
+ -webkit-box-sizing: border-box;
89
+ -o-box-sizing: border-box;
90
+ -ms-box-sizing: border-box;
91
+ box-sizing: border-box;
92
+ float: left;
93
+ margin-left: 1.25%;
94
+ margin-right: 1.25%;
95
+ width: 7.5%;
96
+ }
97
+ }
98
+ @media screen and (max-width: 40em) {
99
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000314}}
100
+ .grid-1 {
101
+ -moz-box-sizing: border-box;
102
+ -webkit-box-sizing: border-box;
103
+ -o-box-sizing: border-box;
104
+ -ms-box-sizing: border-box;
105
+ box-sizing: border-box;
106
+ float: left;
107
+ margin-left: 3.125%;
108
+ margin-right: 3.125%;
109
+ width: 18.75%;
110
+ }
111
+ }
112
+
113
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000324}}
114
+ .grid-2 {
115
+ -moz-box-sizing: border-box;
116
+ -webkit-box-sizing: border-box;
117
+ -o-box-sizing: border-box;
118
+ -ms-box-sizing: border-box;
119
+ box-sizing: border-box;
120
+ float: left;
121
+ margin-left: 1.04167%;
122
+ margin-right: 1.04167%;
123
+ width: 14.58333%;
124
+ }
125
+ @media screen and (max-width: 64em) and (orientation: portrait) {
126
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000324}}
127
+ .grid-2 {
128
+ -moz-box-sizing: border-box;
129
+ -webkit-box-sizing: border-box;
130
+ -o-box-sizing: border-box;
131
+ -ms-box-sizing: border-box;
132
+ box-sizing: border-box;
133
+ float: left;
134
+ margin-left: 1.25%;
135
+ margin-right: 1.25%;
136
+ width: 17.5%;
137
+ }
138
+ }
139
+ @media screen and (max-width: 40em) {
140
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000324}}
141
+ .grid-2 {
142
+ -moz-box-sizing: border-box;
143
+ -webkit-box-sizing: border-box;
144
+ -o-box-sizing: border-box;
145
+ -ms-box-sizing: border-box;
146
+ box-sizing: border-box;
147
+ float: left;
148
+ margin-left: 3.125%;
149
+ margin-right: 3.125%;
150
+ width: 43.75%;
151
+ }
152
+ }
153
+
154
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000334}}
155
+ .grid-3 {
156
+ -moz-box-sizing: border-box;
157
+ -webkit-box-sizing: border-box;
158
+ -o-box-sizing: border-box;
159
+ -ms-box-sizing: border-box;
160
+ box-sizing: border-box;
161
+ float: left;
162
+ margin-left: 1.04167%;
163
+ margin-right: 1.04167%;
164
+ width: 22.91667%;
165
+ }
166
+ @media screen and (max-width: 64em) and (orientation: portrait) {
167
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000334}}
168
+ .grid-3 {
169
+ -moz-box-sizing: border-box;
170
+ -webkit-box-sizing: border-box;
171
+ -o-box-sizing: border-box;
172
+ -ms-box-sizing: border-box;
173
+ box-sizing: border-box;
174
+ float: left;
175
+ margin-left: 1.25%;
176
+ margin-right: 1.25%;
177
+ width: 27.5%;
178
+ }
179
+ }
180
+ @media screen and (max-width: 40em) {
181
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000334}}
182
+ .grid-3 {
183
+ -moz-box-sizing: border-box;
184
+ -webkit-box-sizing: border-box;
185
+ -o-box-sizing: border-box;
186
+ -ms-box-sizing: border-box;
187
+ box-sizing: border-box;
188
+ float: left;
189
+ margin-left: 3.125%;
190
+ margin-right: 3.125%;
191
+ width: 68.75%;
192
+ }
193
+ }
194
+
195
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000344}}
196
+ .grid-4 {
197
+ -moz-box-sizing: border-box;
198
+ -webkit-box-sizing: border-box;
199
+ -o-box-sizing: border-box;
200
+ -ms-box-sizing: border-box;
201
+ box-sizing: border-box;
202
+ float: left;
203
+ margin-left: 1.04167%;
204
+ margin-right: 1.04167%;
205
+ width: 31.25%;
206
+ }
207
+ @media screen and (max-width: 64em) and (orientation: portrait) {
208
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000344}}
209
+ .grid-4 {
210
+ -moz-box-sizing: border-box;
211
+ -webkit-box-sizing: border-box;
212
+ -o-box-sizing: border-box;
213
+ -ms-box-sizing: border-box;
214
+ box-sizing: border-box;
215
+ float: left;
216
+ margin-left: 1.25%;
217
+ margin-right: 1.25%;
218
+ width: 37.5%;
219
+ }
220
+ }
221
+ @media screen and (max-width: 40em) {
222
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000344}}
223
+ .grid-4 {
224
+ -moz-box-sizing: border-box;
225
+ -webkit-box-sizing: border-box;
226
+ -o-box-sizing: border-box;
227
+ -ms-box-sizing: border-box;
228
+ box-sizing: border-box;
229
+ float: left;
230
+ margin-left: 3.125%;
231
+ margin-right: 3.125%;
232
+ width: 93.75%;
233
+ }
234
+ }
235
+
236
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000354}}
237
+ .grid-5 {
238
+ -moz-box-sizing: border-box;
239
+ -webkit-box-sizing: border-box;
240
+ -o-box-sizing: border-box;
241
+ -ms-box-sizing: border-box;
242
+ box-sizing: border-box;
243
+ float: left;
244
+ margin-left: 1.04167%;
245
+ margin-right: 1.04167%;
246
+ width: 39.58333%;
247
+ }
248
+ @media screen and (max-width: 64em) and (orientation: portrait) {
249
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000354}}
250
+ .grid-5 {
251
+ -moz-box-sizing: border-box;
252
+ -webkit-box-sizing: border-box;
253
+ -o-box-sizing: border-box;
254
+ -ms-box-sizing: border-box;
255
+ box-sizing: border-box;
256
+ float: left;
257
+ margin-left: 1.25%;
258
+ margin-right: 1.25%;
259
+ width: 47.5%;
260
+ }
261
+ }
262
+ @media screen and (max-width: 40em) {
263
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000354}}
264
+ .grid-5 {
265
+ -moz-box-sizing: border-box;
266
+ -webkit-box-sizing: border-box;
267
+ -o-box-sizing: border-box;
268
+ -ms-box-sizing: border-box;
269
+ box-sizing: border-box;
270
+ float: left;
271
+ margin-left: 3.125%;
272
+ margin-right: 3.125%;
273
+ width: 93.75%;
274
+ }
275
+ }
276
+
277
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000364}}
278
+ .grid-6 {
279
+ -moz-box-sizing: border-box;
280
+ -webkit-box-sizing: border-box;
281
+ -o-box-sizing: border-box;
282
+ -ms-box-sizing: border-box;
283
+ box-sizing: border-box;
284
+ float: left;
285
+ margin-left: 1.04167%;
286
+ margin-right: 1.04167%;
287
+ width: 47.91667%;
288
+ }
289
+ @media screen and (max-width: 64em) and (orientation: portrait) {
290
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000364}}
291
+ .grid-6 {
292
+ -moz-box-sizing: border-box;
293
+ -webkit-box-sizing: border-box;
294
+ -o-box-sizing: border-box;
295
+ -ms-box-sizing: border-box;
296
+ box-sizing: border-box;
297
+ float: left;
298
+ margin-left: 1.25%;
299
+ margin-right: 1.25%;
300
+ width: 57.5%;
301
+ }
302
+ }
303
+ @media screen and (max-width: 40em) {
304
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000364}}
305
+ .grid-6 {
306
+ -moz-box-sizing: border-box;
307
+ -webkit-box-sizing: border-box;
308
+ -o-box-sizing: border-box;
309
+ -ms-box-sizing: border-box;
310
+ box-sizing: border-box;
311
+ float: left;
312
+ margin-left: 3.125%;
313
+ margin-right: 3.125%;
314
+ width: 93.75%;
315
+ }
316
+ }
317
+
318
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000374}}
319
+ .grid-7 {
320
+ -moz-box-sizing: border-box;
321
+ -webkit-box-sizing: border-box;
322
+ -o-box-sizing: border-box;
323
+ -ms-box-sizing: border-box;
324
+ box-sizing: border-box;
325
+ float: left;
326
+ margin-left: 1.04167%;
327
+ margin-right: 1.04167%;
328
+ width: 56.25%;
329
+ }
330
+ @media screen and (max-width: 64em) and (orientation: portrait) {
331
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000374}}
332
+ .grid-7 {
333
+ -moz-box-sizing: border-box;
334
+ -webkit-box-sizing: border-box;
335
+ -o-box-sizing: border-box;
336
+ -ms-box-sizing: border-box;
337
+ box-sizing: border-box;
338
+ float: left;
339
+ margin-left: 1.25%;
340
+ margin-right: 1.25%;
341
+ width: 67.5%;
342
+ }
343
+ }
344
+ @media screen and (max-width: 40em) {
345
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000374}}
346
+ .grid-7 {
347
+ -moz-box-sizing: border-box;
348
+ -webkit-box-sizing: border-box;
349
+ -o-box-sizing: border-box;
350
+ -ms-box-sizing: border-box;
351
+ box-sizing: border-box;
352
+ float: left;
353
+ margin-left: 3.125%;
354
+ margin-right: 3.125%;
355
+ width: 93.75%;
356
+ }
357
+ }
358
+
359
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000384}}
360
+ .grid-8 {
361
+ -moz-box-sizing: border-box;
362
+ -webkit-box-sizing: border-box;
363
+ -o-box-sizing: border-box;
364
+ -ms-box-sizing: border-box;
365
+ box-sizing: border-box;
366
+ float: left;
367
+ margin-left: 1.04167%;
368
+ margin-right: 1.04167%;
369
+ width: 64.58333%;
370
+ }
371
+ @media screen and (max-width: 64em) and (orientation: portrait) {
372
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000384}}
373
+ .grid-8 {
374
+ -moz-box-sizing: border-box;
375
+ -webkit-box-sizing: border-box;
376
+ -o-box-sizing: border-box;
377
+ -ms-box-sizing: border-box;
378
+ box-sizing: border-box;
379
+ float: left;
380
+ margin-left: 1.25%;
381
+ margin-right: 1.25%;
382
+ width: 77.5%;
383
+ }
384
+ }
385
+ @media screen and (max-width: 40em) {
386
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000384}}
387
+ .grid-8 {
388
+ -moz-box-sizing: border-box;
389
+ -webkit-box-sizing: border-box;
390
+ -o-box-sizing: border-box;
391
+ -ms-box-sizing: border-box;
392
+ box-sizing: border-box;
393
+ float: left;
394
+ margin-left: 3.125%;
395
+ margin-right: 3.125%;
396
+ width: 93.75%;
397
+ }
398
+ }
399
+
400
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000394}}
401
+ .grid-9 {
402
+ -moz-box-sizing: border-box;
403
+ -webkit-box-sizing: border-box;
404
+ -o-box-sizing: border-box;
405
+ -ms-box-sizing: border-box;
406
+ box-sizing: border-box;
407
+ float: left;
408
+ margin-left: 1.04167%;
409
+ margin-right: 1.04167%;
410
+ width: 72.91667%;
411
+ }
412
+ @media screen and (max-width: 64em) and (orientation: portrait) {
413
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000394}}
414
+ .grid-9 {
415
+ -moz-box-sizing: border-box;
416
+ -webkit-box-sizing: border-box;
417
+ -o-box-sizing: border-box;
418
+ -ms-box-sizing: border-box;
419
+ box-sizing: border-box;
420
+ float: left;
421
+ margin-left: 1.25%;
422
+ margin-right: 1.25%;
423
+ width: 87.5%;
424
+ }
425
+ }
426
+ @media screen and (max-width: 40em) {
427
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\0000394}}
428
+ .grid-9 {
429
+ -moz-box-sizing: border-box;
430
+ -webkit-box-sizing: border-box;
431
+ -o-box-sizing: border-box;
432
+ -ms-box-sizing: border-box;
433
+ box-sizing: border-box;
434
+ float: left;
435
+ margin-left: 3.125%;
436
+ margin-right: 3.125%;
437
+ width: 93.75%;
438
+ }
439
+ }
440
+
441
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\00003104}}
442
+ .grid-10 {
443
+ -moz-box-sizing: border-box;
444
+ -webkit-box-sizing: border-box;
445
+ -o-box-sizing: border-box;
446
+ -ms-box-sizing: border-box;
447
+ box-sizing: border-box;
448
+ float: left;
449
+ margin-left: 1.04167%;
450
+ margin-right: 1.04167%;
451
+ width: 81.25%;
452
+ }
453
+ @media screen and (max-width: 64em) and (orientation: portrait) {
454
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\00003104}}
455
+ .grid-10 {
456
+ -moz-box-sizing: border-box;
457
+ -webkit-box-sizing: border-box;
458
+ -o-box-sizing: border-box;
459
+ -ms-box-sizing: border-box;
460
+ box-sizing: border-box;
461
+ float: left;
462
+ margin-left: 1.25%;
463
+ margin-right: 1.25%;
464
+ width: 97.5%;
465
+ }
466
+ }
467
+ @media screen and (max-width: 40em) {
468
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\00003104}}
469
+ .grid-10 {
470
+ -moz-box-sizing: border-box;
471
+ -webkit-box-sizing: border-box;
472
+ -o-box-sizing: border-box;
473
+ -ms-box-sizing: border-box;
474
+ box-sizing: border-box;
475
+ float: left;
476
+ margin-left: 3.125%;
477
+ margin-right: 3.125%;
478
+ width: 93.75%;
479
+ }
480
+ }
481
+
482
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\00003114}}
483
+ .grid-11 {
484
+ -moz-box-sizing: border-box;
485
+ -webkit-box-sizing: border-box;
486
+ -o-box-sizing: border-box;
487
+ -ms-box-sizing: border-box;
488
+ box-sizing: border-box;
489
+ float: left;
490
+ margin-left: 1.04167%;
491
+ margin-right: 1.04167%;
492
+ width: 89.58333%;
493
+ }
494
+ @media screen and (max-width: 64em) and (orientation: portrait) {
495
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\00003114}}
496
+ .grid-11 {
497
+ -moz-box-sizing: border-box;
498
+ -webkit-box-sizing: border-box;
499
+ -o-box-sizing: border-box;
500
+ -ms-box-sizing: border-box;
501
+ box-sizing: border-box;
502
+ float: left;
503
+ margin-left: 1.25%;
504
+ margin-right: 1.25%;
505
+ width: 97.5%;
506
+ }
507
+ }
508
+ @media screen and (max-width: 40em) {
509
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\00003114}}
510
+ .grid-11 {
511
+ -moz-box-sizing: border-box;
512
+ -webkit-box-sizing: border-box;
513
+ -o-box-sizing: border-box;
514
+ -ms-box-sizing: border-box;
515
+ box-sizing: border-box;
516
+ float: left;
517
+ margin-left: 3.125%;
518
+ margin-right: 3.125%;
519
+ width: 93.75%;
520
+ }
521
+ }
522
+
523
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\00003124}}
524
+ .grid-12 {
525
+ -moz-box-sizing: border-box;
526
+ -webkit-box-sizing: border-box;
527
+ -o-box-sizing: border-box;
528
+ -ms-box-sizing: border-box;
529
+ box-sizing: border-box;
530
+ float: left;
531
+ margin-left: 1.04167%;
532
+ margin-right: 1.04167%;
533
+ width: 97.91667%;
534
+ }
535
+ @media screen and (max-width: 64em) and (orientation: portrait) {
536
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\00003124}}
537
+ .grid-12 {
538
+ -moz-box-sizing: border-box;
539
+ -webkit-box-sizing: border-box;
540
+ -o-box-sizing: border-box;
541
+ -ms-box-sizing: border-box;
542
+ box-sizing: border-box;
543
+ float: left;
544
+ margin-left: 1.25%;
545
+ margin-right: 1.25%;
546
+ width: 97.5%;
547
+ }
548
+ }
549
+ @media screen and (max-width: 40em) {
550
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/_extends\.scss}line{font-family:\00003124}}
551
+ .grid-12 {
552
+ -moz-box-sizing: border-box;
553
+ -webkit-box-sizing: border-box;
554
+ -o-box-sizing: border-box;
555
+ -ms-box-sizing: border-box;
556
+ box-sizing: border-box;
557
+ float: left;
558
+ margin-left: 3.125%;
559
+ margin-right: 3.125%;
560
+ width: 93.75%;
561
+ }
562
+ }
563
+
564
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_typography\.scss}line{font-family:\0000336}}
565
+ [class*="toadstool"] h1 {
566
+ font-weight: bold;
567
+ }
568
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_typography\.scss}line{font-family:\0000340}}
569
+ [class*="toadstool"] h2 {
570
+ color: #5a2e2e;
571
+ }
572
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_typography\.scss}line{font-family:\0000344}}
573
+ [class*="toadstool"] p, [class*="toadstool"] ul {
574
+ color: #5c5c5c;
575
+ font-size: 1.16667em;
576
+ line-height: 1.28571em;
577
+ margin-bottom: 1.28571em;
578
+ }
579
+
580
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_design\.scss}line{font-family:\000033}}
581
+ .styleguide_main_content {
582
+ -moz-box-sizing: border-box;
583
+ -webkit-box-sizing: border-box;
584
+ -o-box-sizing: border-box;
585
+ -ms-box-sizing: border-box;
586
+ box-sizing: border-box;
587
+ margin: 0 auto;
588
+ width: 100%;
589
+ }
590
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_design\.scss}line{font-family:\000036}}
591
+ .styleguide_main_content .styleguide_article, .styleguide_main_content .element_example {
592
+ -moz-box-sizing: border-box;
593
+ -webkit-box-sizing: border-box;
594
+ -o-box-sizing: border-box;
595
+ -ms-box-sizing: border-box;
596
+ box-sizing: border-box;
597
+ margin: 0 auto;
598
+ width: 80em;
599
+ }
600
+ @media screen and (max-width: 64em) and (orientation: portrait) {
601
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_design\.scss}line{font-family:\000036}}
602
+ .styleguide_main_content .styleguide_article, .styleguide_main_content .element_example {
603
+ -moz-box-sizing: border-box;
604
+ -webkit-box-sizing: border-box;
605
+ -o-box-sizing: border-box;
606
+ -ms-box-sizing: border-box;
607
+ box-sizing: border-box;
608
+ margin: 0 auto;
609
+ width: 100%;
610
+ }
611
+ }
612
+ @media screen and (max-width: 40em) {
613
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_design\.scss}line{font-family:\000036}}
614
+ .styleguide_main_content .styleguide_article, .styleguide_main_content .element_example {
615
+ -moz-box-sizing: border-box;
616
+ -webkit-box-sizing: border-box;
617
+ -o-box-sizing: border-box;
618
+ -ms-box-sizing: border-box;
619
+ box-sizing: border-box;
620
+ margin: 0 auto;
621
+ width: 100%;
622
+ }
623
+ }
624
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_design\.scss}line{font-family:\0000317}}
625
+ .styleguide_main_content .styleguide_article .toadstool_header, .styleguide_main_content .styleguide_article .toadstool_subheader, .styleguide_main_content .element_example .toadstool_header, .styleguide_main_content .element_example .toadstool_subheader {
626
+ -moz-box-sizing: border-box;
627
+ -webkit-box-sizing: border-box;
628
+ -o-box-sizing: border-box;
629
+ -ms-box-sizing: border-box;
630
+ box-sizing: border-box;
631
+ float: left;
632
+ margin-left: 1.04167%;
633
+ margin-right: 1.04167%;
634
+ width: 97.91667%;
635
+ }
636
+ @media screen and (max-width: 40em) {
637
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_design\.scss}line{font-family:\0000317}}
638
+ .styleguide_main_content .styleguide_article .toadstool_header, .styleguide_main_content .styleguide_article .toadstool_subheader, .styleguide_main_content .element_example .toadstool_header, .styleguide_main_content .element_example .toadstool_subheader {
639
+ -moz-box-sizing: border-box;
640
+ -webkit-box-sizing: border-box;
641
+ -o-box-sizing: border-box;
642
+ -ms-box-sizing: border-box;
643
+ box-sizing: border-box;
644
+ float: left;
645
+ margin-left: 3.125%;
646
+ margin-right: 3.125%;
647
+ width: 93.75%;
648
+ }
649
+ }
650
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_design\.scss}line{font-family:\0000324}}
651
+ .styleguide_main_content .styleguide_article section, .styleguide_main_content .element_example section {
652
+ clear: both;
653
+ }
654
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_design\.scss}line{font-family:\0000326}}
655
+ .styleguide_main_content .styleguide_article section:nth-of-type(1n+2), .styleguide_main_content .element_example section:nth-of-type(1n+2) {
656
+ border-top: 1px dotted;
657
+ padding-top: 1.66667em;
658
+ }
659
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_design\.scss}line{font-family:\0000332}}
660
+ .styleguide_main_content .element_example {
661
+ margin-bottom: 1.66667em;
662
+ float: left;
663
+ background-image: url(data:image/gif;base64,R0lGODlhUAABAIAAAP/////l5SwAAAAAUAABAAACC4SPocvtD6NsqIICADs=);
664
+ }
665
+
666
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_design\.scss}line{font-family:\0000339}}
667
+ .hidden {
668
+ display: none;
669
+ }
670
+
671
+ @media screen and (max-width: 40em) {
672
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_design\.scss}line{font-family:\0000343}}
673
+ .mobi_hidden {
674
+ display: none;
675
+ }
676
+ }
677
+
678
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_design\.scss}line{font-family:\0000349}}
679
+ code {
680
+ padding: 0.16667em 0.41667em;
681
+ background: #fffff5;
682
+ }
683
+
684
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_forms\.scss}line{font-family:\000033}}
685
+ [class*="toadstool"] select {
686
+ border: 1px solid #555;
687
+ padding: 0.5em;
688
+ line-height: 1.2em;
689
+ padding: 0.5em 1em 0.5em 0.75em;
690
+ margin-top: 0.25em;
691
+ -webkit-border-radius: 0.5em;
692
+ border-radius: 0.5em;
693
+ }
694
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_forms\.scss}line{font-family:\0000310}}
695
+ .flexbox [class*="toadstool"] select {
696
+ -webkit-appearance: none;
697
+ background: white url("data:image/png,%89PNG%0D%0A%1A%0A%00%00%00%0DIHDR%00%00%0C%80%00%00%00%40%08%02%00%00%00W%AEz%EF%00%00%00%19tEXtSoftware%00Adobe%20ImageReadyq%C9e%3C%00%00%04%E5IDATx%DA%EC%DD%3DN%E3Z%18%06%E0%B1oD%82%A8%E8(%A8%D2Q%D2%D0%40%83%C4%12%D8%01%3Db%09P%81%A0%40%A2%60%05%D9%05%BB%A0%04%09!B%3A%9A%10%07%F2g%E7%22%90f(%98%E09%23Y7%E7%3EOi%1F%1FK_%FD%EA%FD%92%E9t%FA%03%00%00%00%00%00%00%00%00%80%3F%97%1A%01%00%00%00%00%00%00%00%00%40%98%9A%06%2C%00%00%00%00%00%00%00%00%20%0E%D5%A7%A14%60%01%00%00%00%00%00%00%00%00%04%D2%80%05%00%00%00%00%00%00%00%00DB%03%16%00%00%00%00%00%00%00%00%C0%DC%D0%80%05%00%00%00%00%00%00%00%00D%A2(%8A%8A%FF(%80%05%00%00%00%00%00%00%00%00D%C2%0AB%00%00%00%00%00%00%00%00%80%B9%A1%01%0B%00%00%00%00%00%00%00%00%88%84%15%84%00%00%00%00%00%00%00%00%00%81%AC%20%04%00%00%00%00%00%00%00%00%98%1B%1A%B0%00%00%00%00%00%00%00%00%80HXA%08%00%00%00%00%00%00%00%00%10%A8%FA4%94%00%16%00%00%00%00%00%00%00%00%10%09%0DX%00%00%00%00%00%00%00%00%00%81%AAOC%A5%86%0E%00%00%00%00%00%00%00%00%10F%03%16%00%00%00%00%00%00%00%00%10%09%2B%08%01%00%00%00%00%00%00%00%00%02U%9F%86%12%C0%02%00%00%00%00%00%00%00%00%22!%80%05%00%00%00%00%00%00%00%00%10%C8%0AB%00%00%00%00%00%00%00%00%80%40%1A%B0%00%00%00%00%00%00%00%00%00%02i%C0%02%00%00%00%00%00%00%00%00%08%A4%01%0B%00%00%00%00%00%00%00%00%20%90%06%2C%00%00%00%00%00%00%00%00%80%40%02X%00%00%00%00%00%00%00%00%00%81%AC%20%04%00%00%00%00%00%00%00%00%08%24%80%05%00%00%00%00%00%00%00%00%10%C8%0AB%00%00%00%00%00%00%00%00%80%40%1A%B0%00%00%00%00%00%00%00%00%00%02i%C0%02%00%00%00%00%00%00%00%00%084%3B%0Du%7B%7B%7Bzz%3A%18%0C%CA_%D8h4%F6%F6%F6677%F3%3C%FF%F2%40%D2%E9t%CC%1D%00%00%00%00%00%00%00%00%88%40%96e3%DE%26I2%18%0C%8E%8F%8F%EF%EE%EE%CA%DC%B6%BC%BC%7Cxx%D8l6_%5E%5EF%A3%D1%97%E9%AE%D4%D0%01%00%00%00%00%00%00%00%80%FF%83%E9t%BA%B8%B8xvv%B6%B3%B3%F3%ED%E1%F5%F5%F5V%AB%B5%B6%B66%99L~W%7F%F5%26y%7C%7C4Y%00%00%00%00%00%00%00%00%20%02%BD%5E%EF%DB3i%9A%D6%EB%F5%AB%AB%ABV%AB%F5%BBu%84%BB%BB%BB%FB%FB%FB%FD~%3F%CB%B2%B73%B3%02X%EDv%DB%DC%01%00%00%00%00%00%00%00%80%08%94%09%60%FDx%DFE%B8%B0%B0%D0n%B7%2F..%3A%9D%CE%E7W%8DF%E3%E8%E8hcc%23%7B7%1C%0E%BF%DC%3C%F8%EB%AA%87%87%07s%07%00%00%00%00%00%00%00%00%22%F0%FC%FC%5C%F2d%9A%A6%B5Zm2%99%9C%9F%9F___%7F%3C%5C%5D%5D%3D99YYY%E9%F5z%FD~%7F%3C%1E%17E1%FB%9E%7F%0E%0E%0E%CC%1D%00%00%00%00%00%00%00%00%88%C0p8%2Cyr%3A%9D%E6y%9E%A6%E9%F6%F6%F6h4%BA%B9%B9%D9%DA%DA%BA%BC%BC%AC%D5j%DDn7%CB%B2%B7%87%B3%BB%AF%3E%24%F7%F7%F7%E6%0E%00%00%00%00%00%00%00%00D%A0%7C%03%D6Oi%9A%D6%EB%F5n%B7%DBl6%C7%E3q%96e%AF%AF%AF%DF%16_%FDT%2B%93%D2%02%00%00%00%00%00%00%00%00%F8%EF%2B%1F%9C%FA%FC%C9%9B%A5%A5%A5%A7%A7%A7%3C%CF%CB%AC%1D%FCL%00%0B%00%00%00%00%00%00%00%00%88DX%1A*%7F%97%24I%C0%E7%02X%00%00%00%00%00%00%00%00%40%24%FE%26%0D%15%F6%AD%00%16%00%00%00%00%00%00%00%00%10%89%80%15%84%7FI%00%0B%00%00%00%00%00%00%00%00%88D%F5i(%01%2C%00%00%00%00%00%00%00%00%20%12%1A%B0%00%00%00%00%00%00%00%00%00%02i%C0%02%00%00%00%00%00%00%00%00%08%24%80%05%00%00%00%00%00%00%00%00%10%C8%0AB%00%00%00%00%00%00%00%00%80%40%D5%A7%A1RC%07%00%00%00%00%00%00%00%00%08%A3%01%0B%00%00%00%00%00%00%00%00%88%84%15%84%00%00%00%00%00%00%00%00%00%81%AAOC%09%60%01%00%00%00%00%00%00%00%00%91%10%C0%02%00%00%00%00%00%00%00%00%08T%FD%0A%C2%D4%D0%01%00%00%00%00%00%00%00%00%C2h%C0%02%00%00%00%00%00%00%00%00%22a%05!%00%00%00%00%00%00%00%00%40%A0%EA%D3PV%10%02%00%00%00%00%00%00%00%00%04%D2%80%05%00%00%00%00%00%00%00%00D%A2(%8A%8A%FF(%80%05%00%00%00%00%00%00%00%00D%C2%0AB%00%00%00%00%00%00%00%00%80%B9%A1%01%0B%00%00%00%00%00%00%00%00%88%84%06%2C%00%00%00%00%00%00%00%00%80%B9%A1%01%0B%00%00%00%00%00%00%00%00%88DQ%14%15%FF%F1_%01%06%00md%E2%BF%C9%C3%19%DA%00%00%00%00IEND%AEB%60%82") no-repeat right center;
698
+ background-size: 1600px 32px;
699
+ }
700
+
701
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_buttons\.scss}line{font-family:\000032}}
702
+ [class*="toadstool"] .nav_toggle {
703
+ background: #333333;
704
+ background: -webkit-linear-gradient(top, #707070 0%, #333333 100%);
705
+ background: -moz-linear-gradient(top, #707070 0%, #333333 100%);
706
+ background: -o-linear-gradient(top, #707070 0%, #333333 100%);
707
+ background: -ms-linear-gradient(top, #707070 0%, #333333 100%);
708
+ text-shadow: 0 0 0;
709
+ box-shadow: 0 0 0;
710
+ border-color: #333333;
711
+ float: right;
712
+ display: none;
713
+ color: white;
714
+ }
715
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_buttons\.scss}line{font-family:\000034}}
716
+ [class*="toadstool"] .nav_toggle:hover {
717
+ background: #333333;
718
+ background: -webkit-linear-gradient(top, #333333 0%, #707070 100%);
719
+ background: -moz-linear-gradient(top, #333333 0%, #707070 100%);
720
+ background: -o-linear-gradient(top, #333333 0%, #707070 100%);
721
+ background: -ms-linear-gradient(top, #333333 0%, #707070 100%);
722
+ border-color: #333333;
723
+ box-shadow: 0 0 0;
724
+ }
725
+ @media screen and (max-width: 40em) {
726
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_buttons\.scss}line{font-family:\000032}}
727
+ [class*="toadstool"] .nav_toggle {
728
+ display: block;
729
+ width: auto;
730
+ padding: 1.25rem 0.83333rem 0.83333rem 0.83333rem;
731
+ font-weight: normal;
732
+ }
733
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_buttons\.scss}line{font-family:\0000321}}
734
+ [class*="toadstool"] .nav_toggle span:after {
735
+ content: "\f00b";
736
+ font-family: FontAwesome;
737
+ font-size: 2em;
738
+ }
739
+ }
740
+
741
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_grids\.scss}line{font-family:\000032}}
742
+ .col_4_grid, .col_10_grid {
743
+ display: none;
744
+ }
745
+
746
+ @media screen and (max-width: 64em) and (orientation: portrait) {
747
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_grids\.scss}line{font-family:\000037}}
748
+ .col_10_grid {
749
+ display: block;
750
+ }
751
+
752
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_grids\.scss}line{font-family:\0000310}}
753
+ .col_12_grid {
754
+ display: none;
755
+ }
756
+ }
757
+ @media screen and (max-width: 40em) {
758
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_grids\.scss}line{font-family:\0000316}}
759
+ .col_4_grid {
760
+ display: block;
761
+ }
762
+
763
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_grids\.scss}line{font-family:\0000319}}
764
+ .col_12_grid, .col_10_grid {
765
+ display: none;
766
+ }
767
+ }
768
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_grids\.scss}line{font-family:\0000387}}
769
+ .grid-full {
770
+ -moz-box-sizing: border-box;
771
+ -webkit-box-sizing: border-box;
772
+ -o-box-sizing: border-box;
773
+ -ms-box-sizing: border-box;
774
+ box-sizing: border-box;
775
+ margin: 0;
776
+ width: 100%;
777
+ }
778
+
779
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/_grids\.scss}line{font-family:\0000391}}
780
+ .grid-full_center {
781
+ -moz-box-sizing: border-box;
782
+ -webkit-box-sizing: border-box;
783
+ -o-box-sizing: border-box;
784
+ -ms-box-sizing: border-box;
785
+ box-sizing: border-box;
786
+ margin: 0 auto;
787
+ width: 100%;
788
+ }
789
+
790
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000311}}
791
+ .str {
792
+ color: #EC7600;
793
+ }
794
+
795
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000315}}
796
+ .kwd {
797
+ color: #9763C7;
798
+ }
799
+
800
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000319}}
801
+ .com {
802
+ color: #93C763;
803
+ }
804
+
805
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000323}}
806
+ .typ {
807
+ color: #678CB1;
808
+ }
809
+
810
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000327}}
811
+ .lit {
812
+ color: #FACD22;
813
+ }
814
+
815
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000331}}
816
+ .pun {
817
+ color: #F1F2F3;
818
+ }
819
+
820
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000335}}
821
+ .pln {
822
+ color: #F1F2F3;
823
+ }
824
+
825
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000339}}
826
+ .tag {
827
+ color: #8AC763;
828
+ }
829
+
830
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000343}}
831
+ .atn {
832
+ color: #E0E2E4;
833
+ }
834
+
835
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000347}}
836
+ .atv {
837
+ color: #EC7600;
838
+ }
839
+
840
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000351}}
841
+ .dec {
842
+ color: purple;
843
+ }
844
+
845
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000355}}
846
+ pre.prettyprint {
847
+ font-size: 1.16667em;
848
+ }
849
+ @media screen and (max-width: 40em) {
850
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000355}}
851
+ pre.prettyprint {
852
+ font-size: 1.16667em;
853
+ }
854
+ }
855
+
856
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000362}}
857
+ ol.linenums {
858
+ margin-top: 0;
859
+ margin-bottom: 0;
860
+ }
861
+
862
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000367}}
863
+ .example_code, .instructional_example {
864
+ background: #474747;
865
+ -webkit-border-radius: 0.41667em;
866
+ border-radius: 0.41667em;
867
+ padding: 0.83333em 0.83333em 0 1.66667em;
868
+ margin-bottom: 1.66667em;
869
+ -moz-box-sizing: border-box;
870
+ -webkit-box-sizing: border-box;
871
+ -o-box-sizing: border-box;
872
+ -ms-box-sizing: border-box;
873
+ box-sizing: border-box;
874
+ float: left;
875
+ margin-left: 1.04167%;
876
+ margin-right: 1.04167%;
877
+ width: 97.91667%;
878
+ line-height: 1.5em;
879
+ }
880
+ @media screen and (max-width: 64em) and (orientation: portrait) {
881
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000367}}
882
+ .example_code, .instructional_example {
883
+ -moz-box-sizing: border-box;
884
+ -webkit-box-sizing: border-box;
885
+ -o-box-sizing: border-box;
886
+ -ms-box-sizing: border-box;
887
+ box-sizing: border-box;
888
+ float: left;
889
+ margin-left: 1.25%;
890
+ margin-right: 1.25%;
891
+ width: 97.5%;
892
+ padding-right: 0.83333em;
893
+ }
894
+ }
895
+ @media screen and (max-width: 40em) {
896
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000367}}
897
+ .example_code, .instructional_example {
898
+ -moz-box-sizing: border-box;
899
+ -webkit-box-sizing: border-box;
900
+ -o-box-sizing: border-box;
901
+ -ms-box-sizing: border-box;
902
+ box-sizing: border-box;
903
+ float: left;
904
+ margin-left: 3.125%;
905
+ margin-right: 3.125%;
906
+ width: 93.75%;
907
+ padding-right: 0.83333em;
908
+ }
909
+ }
910
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000385}}
911
+ .example_code p, .instructional_example p {
912
+ color: #999999;
913
+ float: right;
914
+ margin: 0 0.83333em 0.83333em 0;
915
+ margin-bottom: 0.5em;
916
+ font-size: 1.5em;
917
+ }
918
+ @media screen and (max-width: 40em) {
919
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000385}}
920
+ .example_code p, .instructional_example p {
921
+ margin-right: 0;
922
+ font-size: 1em;
923
+ }
924
+ }
925
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000396}}
926
+ .example_code .codeToggle, .instructional_example .codeToggle {
927
+ margin-left: 0.5em;
928
+ }
929
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\0000399}}
930
+ .example_code .mtime, .instructional_example .mtime {
931
+ display: block;
932
+ width: 100%;
933
+ font-size: 0.9em;
934
+ text-align: right;
935
+ }
936
+
937
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\00003107}}
938
+ .instructional_example {
939
+ background: transparent;
940
+ }
941
+
942
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\00003113}}
943
+ li.L0, li.L1, li.L2, li.L3, li.L4, li.L5, li.L6, li.L7, li.L8, li.L9 {
944
+ list-style-type: decimal;
945
+ margin: 0 0 0 2.5em;
946
+ color: white;
947
+ padding: 0.25em 0;
948
+ }
949
+
950
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_prettify\.scss}line{font-family:\00003120}}
951
+ li.L1, li.L3, li.L5, li.L7, li.L9 {
952
+ background: #3F3F3F;
953
+ }
954
+
955
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_emBox\.scss}line{font-family:\000033}}
956
+ .emBox {
957
+ position: fixed;
958
+ padding: 0.41667em 0.83333em;
959
+ background: #474747;
960
+ color: white;
961
+ font-weight: bold;
962
+ font-size: 1em;
963
+ bottom: 0;
964
+ left: 0;
965
+ border-radius: 0 0.41667em 0 0;
966
+ }
967
+
968
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\000033}}
969
+ article.colorcode {
970
+ -moz-box-sizing: border-box;
971
+ -webkit-box-sizing: border-box;
972
+ -o-box-sizing: border-box;
973
+ -ms-box-sizing: border-box;
974
+ box-sizing: border-box;
975
+ float: left;
976
+ margin-left: 1.04167%;
977
+ margin-right: 1.04167%;
978
+ width: 47.91667%;
979
+ }
980
+ @media screen and (max-width: 40em) {
981
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\000033}}
982
+ article.colorcode {
983
+ -moz-box-sizing: border-box;
984
+ -webkit-box-sizing: border-box;
985
+ -o-box-sizing: border-box;
986
+ -ms-box-sizing: border-box;
987
+ box-sizing: border-box;
988
+ float: left;
989
+ margin-left: 3.125%;
990
+ margin-right: 3.125%;
991
+ width: 93.75%;
992
+ }
993
+ }
994
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\000038}}
995
+ article.colorcode div {
996
+ width: 60%;
997
+ margin-bottom: 2em;
998
+ min-height: 2.5em;
999
+ float: left;
1000
+ -moz-box-sizing: border-box;
1001
+ -webkit-box-sizing: border-box;
1002
+ -o-box-sizing: border-box;
1003
+ -ms-box-sizing: border-box;
1004
+ box-sizing: border-box;
1005
+ }
1006
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\0000315}}
1007
+ article.colorcode p {
1008
+ position: relative;
1009
+ left: 105%;
1010
+ font-weight: normal;
1011
+ margin-bottom: 0;
1012
+ width: 50%;
1013
+ }
1014
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\0000322}}
1015
+ article.colorcode .border {
1016
+ -moz-box-shadow: inset #333333 0 0 1px;
1017
+ -webkit-box-shadow: inset #333333 0 0 1px;
1018
+ -o-box-shadow: inset #333333 0 0 1px;
1019
+ -ms-box-shadow: inset #333333 0 0 1px;
1020
+ box-shadow: inset #333333 0 0 1px;
1021
+ }
1022
+
1023
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003263}}
1024
+ .white {
1025
+ background: white;
1026
+ }
1027
+
1028
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003267}}
1029
+ .shadow_color {
1030
+ background: rgba(51, 51, 51, 0.5);
1031
+ }
1032
+
1033
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003271}}
1034
+ .primary_header_color {
1035
+ background: #333333;
1036
+ }
1037
+
1038
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003275}}
1039
+ .heading_font_weight {
1040
+ background: normal;
1041
+ }
1042
+
1043
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003279}}
1044
+ .primary_text {
1045
+ background: #474747;
1046
+ }
1047
+
1048
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003283}}
1049
+ .href_color {
1050
+ background: #a45454;
1051
+ }
1052
+
1053
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003287}}
1054
+ .ins_color {
1055
+ background: #fffedf;
1056
+ }
1057
+
1058
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003291}}
1059
+ .mark_color {
1060
+ background: yellow;
1061
+ }
1062
+
1063
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003295}}
1064
+ .webkit_tap_hightlight {
1065
+ background: #3d4048;
1066
+ }
1067
+
1068
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003299}}
1069
+ .selection_color {
1070
+ background: yellow;
1071
+ }
1072
+
1073
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003303}}
1074
+ .selection_text_color {
1075
+ background: #474747;
1076
+ }
1077
+
1078
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003307}}
1079
+ .border_color {
1080
+ background: #5c5c5c;
1081
+ }
1082
+
1083
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003311}}
1084
+ .primary_button_border_color {
1085
+ background: #3e4147;
1086
+ }
1087
+
1088
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003315}}
1089
+ .secondary_button_border_color {
1090
+ background: #474747;
1091
+ }
1092
+
1093
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003319}}
1094
+ .button_text {
1095
+ background: white;
1096
+ }
1097
+
1098
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/ui_patterns\/_color_grid\.scss}line{font-family:\00003323}}
1099
+ .standard_hr_color {
1100
+ background: #707070;
1101
+ }
1102
+
1103
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_header\.scss}line{font-family:\000031}}
1104
+ .toadstool_main_header {
1105
+ background: #474747;
1106
+ padding: 0.83333rem 0.83333rem 1.25rem 0.83333rem;
1107
+ }
1108
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_header\.scss}line{font-family:\000033}}
1109
+ .toadstool_main_header h1 {
1110
+ color: white;
1111
+ float: left;
1112
+ margin-bottom: 0;
1113
+ }
1114
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_header\.scss}line{font-family:\0000310}}
1115
+ .toadstool_main_header form {
1116
+ display: inline-block;
1117
+ float: right;
1118
+ }
1119
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_header\.scss}line{font-family:\0000313}}
1120
+ .toadstool_main_header form select {
1121
+ min-width: 8.33333rem;
1122
+ }
1123
+ @media screen and (max-width: 40em) {
1124
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_header\.scss}line{font-family:\0000310}}
1125
+ .toadstool_main_header form {
1126
+ margin-top: 0.83333em;
1127
+ margin-right: 0.83333em;
1128
+ margin-left: 0.16667em;
1129
+ width: 80%;
1130
+ float: none;
1131
+ }
1132
+ }
1133
+
1134
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_header\.scss}line{font-family:\0000327}}
1135
+ .toadstool_header h1 {
1136
+ margin-top: 2rem;
1137
+ }
1138
+
1139
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_header\.scss}line{font-family:\0000333}}
1140
+ .toadstool_subheader h2 {
1141
+ margin-bottom: 0;
1142
+ }
1143
+
1144
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_footer\.scss}line{font-family:\000031}}
1145
+ .toadstool_main_footer {
1146
+ padding: 0.83333em 0;
1147
+ border-top: 1px solid #5c5c5c;
1148
+ -moz-box-sizing: border-box;
1149
+ -webkit-box-sizing: border-box;
1150
+ -o-box-sizing: border-box;
1151
+ -ms-box-sizing: border-box;
1152
+ box-sizing: border-box;
1153
+ margin: 0 auto;
1154
+ width: 97.91667%;
1155
+ clear: both;
1156
+ }
1157
+
1158
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_main_nav\.scss}line{font-family:\000032}}
1159
+ .toadstool_nav ol {
1160
+ height: auto;
1161
+ width: 100%;
1162
+ background: #474747;
1163
+ font-weight: bold;
1164
+ }
1165
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003181}}
1166
+ .flexboxlegacy .toadstool_nav ol {
1167
+ display: -moz-box;
1168
+ -moz-box-orient: horizontal;
1169
+ -moz-box-pack: center;
1170
+ -moz-box-align: center;
1171
+ }
1172
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003181}}
1173
+ .flexboxlegacy .toadstool_nav ol {
1174
+ display: -webkit-box;
1175
+ -webkit-box-orient: horizontal;
1176
+ -webkit-box-pack: center;
1177
+ -webkit-box-align: center;
1178
+ }
1179
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003181}}
1180
+ .flexboxlegacy .toadstool_nav ol {
1181
+ display: box;
1182
+ box-orient: horizontal;
1183
+ box-pack: center;
1184
+ box-align: center;
1185
+ }
1186
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003192}}
1187
+ .flexbox .toadstool_nav ol {
1188
+ display: -ms-flexbox;
1189
+ -ms-flex-direction: row;
1190
+ -ms-flex-align: center;
1191
+ -ms-flex-pack: center;
1192
+ -ms-flex-wrap: none;
1193
+ }
1194
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003192}}
1195
+ .flexbox .toadstool_nav ol {
1196
+ display: -ms-flexbox;
1197
+ flex-direction: row;
1198
+ flex-align: center;
1199
+ flex-pack: center;
1200
+ flex-wrap: none;
1201
+ }
1202
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003202}}
1203
+ .no-flexboxlegacy .toadstool_nav ol {
1204
+ width: 100%;
1205
+ float: left;
1206
+ }
1207
+ @media screen and (max-width: 40em) {
1208
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_main_nav\.scss}line{font-family:\000032}}
1209
+ .toadstool_nav ol {
1210
+ height: auto;
1211
+ width: 100%;
1212
+ background: #474747;
1213
+ background: -webkit-linear-gradient(top, #474747 30%, #707070 100%);
1214
+ background: -moz-linear-gradient(top, #474747 30%, #707070 100%);
1215
+ background: -o-linear-gradient(top, #474747 30%, #707070 100%);
1216
+ background: -ms-linear-gradient(top, #474747 30%, #707070 100%);
1217
+ }
1218
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003181}}
1219
+ .flexboxlegacy .toadstool_nav ol {
1220
+ display: -moz-box;
1221
+ -moz-box-orient: vertical;
1222
+ -moz-box-pack: center;
1223
+ -moz-box-align: center;
1224
+ }
1225
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003181}}
1226
+ .flexboxlegacy .toadstool_nav ol {
1227
+ display: -webkit-box;
1228
+ -webkit-box-orient: vertical;
1229
+ -webkit-box-pack: center;
1230
+ -webkit-box-align: center;
1231
+ }
1232
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003181}}
1233
+ .flexboxlegacy .toadstool_nav ol {
1234
+ display: box;
1235
+ box-orient: vertical;
1236
+ box-pack: center;
1237
+ box-align: center;
1238
+ }
1239
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003192}}
1240
+ .flexbox .toadstool_nav ol {
1241
+ display: -ms-flexbox;
1242
+ -ms-flex-direction: row;
1243
+ -ms-flex-align: center;
1244
+ -ms-flex-pack: center;
1245
+ -ms-flex-wrap: none;
1246
+ }
1247
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003192}}
1248
+ .flexbox .toadstool_nav ol {
1249
+ display: -ms-flexbox;
1250
+ flex-direction: row;
1251
+ flex-align: center;
1252
+ flex-pack: center;
1253
+ flex-wrap: none;
1254
+ }
1255
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003202}}
1256
+ .no-flexboxlegacy .toadstool_nav ol {
1257
+ width: 100%;
1258
+ float: left;
1259
+ }
1260
+ }
1261
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_main_nav\.scss}line{font-family:\0000311}}
1262
+ .toadstool_nav li {
1263
+ text-align: center;
1264
+ line-height: 3em;
1265
+ background: white;
1266
+ color: #333333;
1267
+ border-radius: 0.41667em 0.41667em 0 0;
1268
+ }
1269
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003216}}
1270
+ .flexboxlegacy .toadstool_nav li {
1271
+ -moz-box-flex: 1;
1272
+ }
1273
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003216}}
1274
+ .flexboxlegacy .toadstool_nav li {
1275
+ -webkit-box-flex: 1;
1276
+ }
1277
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003216}}
1278
+ .flexboxlegacy .toadstool_nav li {
1279
+ box-flex: 1;
1280
+ }
1281
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003221}}
1282
+ .flexbox .toadstool_nav li {
1283
+ -ms-flex: 1;
1284
+ }
1285
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003221}}
1286
+ .flexbox .toadstool_nav li {
1287
+ flex: 1;
1288
+ }
1289
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\00003225}}
1290
+ .no-flexboxlegacy .toadstool_nav li {
1291
+ float: left;
1292
+ }
1293
+ @media screen and (max-width: 40em) {
1294
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_main_nav\.scss}line{font-family:\0000311}}
1295
+ .toadstool_nav li {
1296
+ width: 100%;
1297
+ border-radius: 0;
1298
+ font-size: 1.2em;
1299
+ background: transparent;
1300
+ color: #858585;
1301
+ border-top: 1px solid #858585;
1302
+ }
1303
+ }
1304
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_main_nav\.scss}line{font-family:\0000327}}
1305
+ .toadstool_nav a {
1306
+ color: white;
1307
+ background: #474747;
1308
+ background: -webkit-linear-gradient(top, #474747 50%, #707070 100%);
1309
+ background: -moz-linear-gradient(top, #474747 50%, #707070 100%);
1310
+ background: -o-linear-gradient(top, #474747 50%, #707070 100%);
1311
+ background: -ms-linear-gradient(top, #474747 50%, #707070 100%);
1312
+ display: block;
1313
+ }
1314
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_main_nav\.scss}line{font-family:\0000330}}
1315
+ .no-flexbox .toadstool_nav a {
1316
+ padding: 0 0.83333em;
1317
+ }
1318
+ @media screen and (max-width: 40em) {
1319
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_main_nav\.scss}line{font-family:\0000327}}
1320
+ .toadstool_nav a {
1321
+ background: transparent;
1322
+ }
1323
+ }
1324
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_main_nav\.scss}line{font-family:\0000337}}
1325
+ .toadstool_nav a:hover {
1326
+ text-decoration: none;
1327
+ background: white;
1328
+ color: #333333;
1329
+ border-radius: 0.41667em 0.41667em 0 0;
1330
+ }
1331
+ @media screen and (max-width: 40em) {
1332
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/toadstool\/modules\/_main_nav\.scss}line{font-family:\0000337}}
1333
+ .toadstool_nav a:hover {
1334
+ border-radius: 0;
1335
+ background: transparent;
1336
+ color: #858585;
1337
+ }
1338
+ }
1339
+
1340
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\000038}}
1341
+ .white {
1342
+ background-color: white;
1343
+ }
1344
+
1345
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000312}}
1346
+ .alpha_gray {
1347
+ background-color: #333333;
1348
+ }
1349
+
1350
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000316}}
1351
+ .bravo_gray {
1352
+ background-color: #474747;
1353
+ }
1354
+
1355
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000320}}
1356
+ .charlie_gray {
1357
+ background-color: #5c5c5c;
1358
+ }
1359
+
1360
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000324}}
1361
+ .delta_gray {
1362
+ background-color: #707070;
1363
+ }
1364
+
1365
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000328}}
1366
+ .echo_gray {
1367
+ background-color: #858585;
1368
+ }
1369
+
1370
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000332}}
1371
+ .fox_gray {
1372
+ background-color: #999999;
1373
+ }
1374
+
1375
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000336}}
1376
+ .golf_gray {
1377
+ background-color: #adadad;
1378
+ }
1379
+
1380
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000340}}
1381
+ .hotel_gray {
1382
+ background-color: #c2c2c2;
1383
+ }
1384
+
1385
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000344}}
1386
+ .india_gray {
1387
+ background-color: #d6d6d6;
1388
+ }
1389
+
1390
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000352}}
1391
+ .alpha_color {
1392
+ background-color: #5a2e2e;
1393
+ }
1394
+
1395
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000355}}
1396
+ .alpha_color_bravo {
1397
+ background-color: #733b3b;
1398
+ }
1399
+
1400
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000358}}
1401
+ .alpha_color_charlie {
1402
+ background-color: #8c4747;
1403
+ }
1404
+
1405
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000361}}
1406
+ .alpha_color_delta {
1407
+ background-color: #a45454;
1408
+ }
1409
+
1410
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000364}}
1411
+ .alpha_color_echo {
1412
+ background-color: #b36b6b;
1413
+ }
1414
+
1415
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000367}}
1416
+ .alpha_color_fox {
1417
+ background-color: #c08383;
1418
+ }
1419
+
1420
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000370}}
1421
+ .alpha_color_golf {
1422
+ background-color: #cc9c9c;
1423
+ }
1424
+
1425
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000373}}
1426
+ .alpha_color_hotel {
1427
+ background-color: #d9b5b5;
1428
+ }
1429
+
1430
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000376}}
1431
+ .alpha_color_india {
1432
+ background-color: #e6cece;
1433
+ }
1434
+
1435
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000379}}
1436
+ .alpha_color_juliet {
1437
+ background-color: #f2e6e6;
1438
+ }
1439
+
1440
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000387}}
1441
+ .bravo_color {
1442
+ background-color: #3e4147;
1443
+ }
1444
+
1445
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000390}}
1446
+ .bravo_color_bravo {
1447
+ background-color: #50535b;
1448
+ }
1449
+
1450
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000393}}
1451
+ .bravo_color_charlie {
1452
+ background-color: #61666f;
1453
+ }
1454
+
1455
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000396}}
1456
+ .bravo_color_delta {
1457
+ background-color: #737883;
1458
+ }
1459
+
1460
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\0000399}}
1461
+ .bravo_color_echo {
1462
+ background-color: #868b96;
1463
+ }
1464
+
1465
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003102}}
1466
+ .bravo_color_fox {
1467
+ background-color: #9a9fa7;
1468
+ }
1469
+
1470
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003105}}
1471
+ .bravo_color_golf {
1472
+ background-color: #aeb2b9;
1473
+ }
1474
+
1475
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003108}}
1476
+ .bravo_color_hotel {
1477
+ background-color: #c3c5ca;
1478
+ }
1479
+
1480
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003111}}
1481
+ .bravo_color_india {
1482
+ background-color: #d7d8dc;
1483
+ }
1484
+
1485
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003114}}
1486
+ .bravo_color_juliet {
1487
+ background-color: #ebeced;
1488
+ }
1489
+
1490
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003123}}
1491
+ .charlie_color {
1492
+ background-color: #fffedf;
1493
+ }
1494
+
1495
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003126}}
1496
+ .charlie_color_bravo {
1497
+ background-color: #fffee2;
1498
+ }
1499
+
1500
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003129}}
1501
+ .charlie_color_charlie {
1502
+ background-color: #fffee5;
1503
+ }
1504
+
1505
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003132}}
1506
+ .charlie_color_delta {
1507
+ background-color: #fffee9;
1508
+ }
1509
+
1510
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003135}}
1511
+ .charlie_color_echo {
1512
+ background-color: #fffeec;
1513
+ }
1514
+
1515
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003138}}
1516
+ .charlie_color_fox {
1517
+ background-color: #ffffef;
1518
+ }
1519
+
1520
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003141}}
1521
+ .charlie_color_golf {
1522
+ background-color: #fffff2;
1523
+ }
1524
+
1525
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003144}}
1526
+ .charlie_color_hotel {
1527
+ background-color: #fffff5;
1528
+ }
1529
+
1530
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003147}}
1531
+ .charlie_color_india {
1532
+ background-color: #fffff9;
1533
+ }
1534
+
1535
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003150}}
1536
+ .charlie_color_juliet {
1537
+ background-color: #fffffc;
1538
+ }
1539
+
1540
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003159}}
1541
+ .delta_color {
1542
+ background-color: #2a2c31;
1543
+ }
1544
+
1545
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003162}}
1546
+ .delta_color_bravo {
1547
+ background-color: #3d4048;
1548
+ }
1549
+
1550
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003165}}
1551
+ .delta_color_charlie {
1552
+ background-color: #51555e;
1553
+ }
1554
+
1555
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003168}}
1556
+ .delta_color_delta {
1557
+ background-color: #646975;
1558
+ }
1559
+
1560
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003171}}
1561
+ .delta_color_echo {
1562
+ background-color: #787d8b;
1563
+ }
1564
+
1565
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003174}}
1566
+ .delta_color_fox {
1567
+ background-color: #8e939e;
1568
+ }
1569
+
1570
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003177}}
1571
+ .delta_color_golf {
1572
+ background-color: #a5a8b2;
1573
+ }
1574
+
1575
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003180}}
1576
+ .delta_color_hotel {
1577
+ background-color: #bbbec5;
1578
+ }
1579
+
1580
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003183}}
1581
+ .delta_color_india {
1582
+ background-color: #d2d4d8;
1583
+ }
1584
+
1585
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003186}}
1586
+ .delta_color_juliet {
1587
+ background-color: #e8e9ec;
1588
+ }
1589
+
1590
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003195}}
1591
+ .echo_color {
1592
+ background-color: #dfba69;
1593
+ }
1594
+
1595
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003198}}
1596
+ .echo_color_bravo {
1597
+ background-color: #e2c178;
1598
+ }
1599
+
1600
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003201}}
1601
+ .echo_color_charlie {
1602
+ background-color: #e5c887;
1603
+ }
1604
+
1605
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003204}}
1606
+ .echo_color_delta {
1607
+ background-color: #e9cf96;
1608
+ }
1609
+
1610
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003207}}
1611
+ .echo_color_echo {
1612
+ background-color: #ecd6a5;
1613
+ }
1614
+
1615
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003210}}
1616
+ .echo_color_fox {
1617
+ background-color: #efdcb4;
1618
+ }
1619
+
1620
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003213}}
1621
+ .echo_color_golf {
1622
+ background-color: #f2e3c3;
1623
+ }
1624
+
1625
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003216}}
1626
+ .echo_color_hotel {
1627
+ background-color: #f5ead2;
1628
+ }
1629
+
1630
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003219}}
1631
+ .echo_color_india {
1632
+ background-color: #f9f1e1;
1633
+ }
1634
+
1635
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003222}}
1636
+ .echo_color_juliet {
1637
+ background-color: #fcf8f0;
1638
+ }
1639
+
1640
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/color\/_extends\.scss}line{font-family:\00003229}}
1641
+ .white {
1642
+ background: white;
1643
+ }