manifold_mock 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (164) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +32 -0
  5. data/lib/generators/manifold_mock/install_generator.rb +81 -0
  6. data/lib/generators/manifold_mock/template_generator.rb +31 -0
  7. data/lib/generators/manifold_mock/templates/foundation/erb/banded.html.erb +116 -0
  8. data/lib/generators/manifold_mock/templates/foundation/erb/banner-home.html.erb +125 -0
  9. data/lib/generators/manifold_mock/templates/foundation/erb/blog.html.erb +154 -0
  10. data/lib/generators/manifold_mock/templates/foundation/erb/feed.html.erb +165 -0
  11. data/lib/generators/manifold_mock/templates/foundation/erb/grid.html.erb +258 -0
  12. data/lib/generators/manifold_mock/templates/foundation/erb/orbit.html.erb +121 -0
  13. data/lib/generators/manifold_mock/templates/foundation/erb/sidebar.html.erb +111 -0
  14. data/lib/generators/manifold_mock/templates/foundation/haml/banded.html.haml +88 -0
  15. data/lib/generators/manifold_mock/templates/foundation/haml/banner-home.html.haml +114 -0
  16. data/lib/generators/manifold_mock/templates/foundation/haml/blog.html.haml +107 -0
  17. data/lib/generators/manifold_mock/templates/foundation/haml/feed.html.haml +155 -0
  18. data/lib/generators/manifold_mock/templates/foundation/haml/grid.html.haml +216 -0
  19. data/lib/generators/manifold_mock/templates/foundation/haml/orbit.html.haml +90 -0
  20. data/lib/generators/manifold_mock/templates/foundation/haml/sidebar.html.haml +92 -0
  21. data/lib/manifold_mock.rb +3 -0
  22. data/lib/manifold_mock/engine.rb +6 -0
  23. data/lib/manifold_mock/version.rb +3 -0
  24. data/lib/tasks/manifold_mock_tasks.rake +4 -0
  25. data/test/dummy/Gemfile +25 -0
  26. data/test/dummy/Gemfile.lock +154 -0
  27. data/test/dummy/README.rdoc +28 -0
  28. data/test/dummy/Rakefile +6 -0
  29. data/test/dummy/app/assets/javascripts/application.js +15 -0
  30. data/test/dummy/app/assets/javascripts/bootstrap.js.coffee +3 -0
  31. data/test/dummy/app/assets/javascripts/posts.js.coffee +3 -0
  32. data/test/dummy/app/assets/stylesheets/application.css +14 -0
  33. data/test/dummy/app/assets/stylesheets/bootstrap_and_overrides.css.less +30 -0
  34. data/test/dummy/app/assets/stylesheets/foundation_and_overrides.scss +1327 -0
  35. data/test/dummy/app/assets/stylesheets/posts.css.scss +3 -0
  36. data/test/dummy/app/assets/stylesheets/scaffolds.css.scss +69 -0
  37. data/test/dummy/app/controllers/application_controller.rb +5 -0
  38. data/test/dummy/app/controllers/posts_controller.rb +74 -0
  39. data/test/dummy/app/helpers/application_helper.rb +2 -0
  40. data/test/dummy/app/helpers/posts_helper.rb +2 -0
  41. data/test/dummy/app/models/post.rb +2 -0
  42. data/test/dummy/app/views/layouts/application.html.haml +51 -0
  43. data/test/dummy/app/views/posts/_form.html.haml +16 -0
  44. data/test/dummy/app/views/posts/edit.html.haml +7 -0
  45. data/test/dummy/app/views/posts/index.html.haml +21 -0
  46. data/test/dummy/app/views/posts/index.json.jbuilder +4 -0
  47. data/test/dummy/app/views/posts/new.html.haml +5 -0
  48. data/test/dummy/app/views/posts/show.html.haml +12 -0
  49. data/test/dummy/app/views/posts/show.json.jbuilder +1 -0
  50. data/test/dummy/bin/bundle +3 -0
  51. data/test/dummy/bin/rails +4 -0
  52. data/test/dummy/bin/rake +4 -0
  53. data/test/dummy/config.ru +4 -0
  54. data/test/dummy/config/application.rb +23 -0
  55. data/test/dummy/config/boot.rb +5 -0
  56. data/test/dummy/config/database.yml +25 -0
  57. data/test/dummy/config/environment.rb +5 -0
  58. data/test/dummy/config/environments/development.rb +29 -0
  59. data/test/dummy/config/environments/production.rb +80 -0
  60. data/test/dummy/config/environments/test.rb +36 -0
  61. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  62. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  63. data/test/dummy/config/initializers/inflections.rb +16 -0
  64. data/test/dummy/config/initializers/mime_types.rb +5 -0
  65. data/test/dummy/config/initializers/secret_token.rb +12 -0
  66. data/test/dummy/config/initializers/session_store.rb +3 -0
  67. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  68. data/test/dummy/config/locales/en.bootstrap.yml +18 -0
  69. data/test/dummy/config/locales/en.yml +23 -0
  70. data/test/dummy/config/routes.rb +59 -0
  71. data/test/dummy/db/development.sqlite3 +0 -0
  72. data/test/dummy/db/migrate/20131007094911_create_posts.rb +10 -0
  73. data/test/dummy/db/schema.rb +23 -0
  74. data/test/dummy/log/development.log +197 -0
  75. data/test/dummy/public/404.html +58 -0
  76. data/test/dummy/public/422.html +58 -0
  77. data/test/dummy/public/500.html +57 -0
  78. data/test/dummy/public/favicon.ico +0 -0
  79. data/test/dummy/test/controllers/posts_controller_test.rb +49 -0
  80. data/test/dummy/test/fixtures/posts.yml +9 -0
  81. data/test/dummy/test/helpers/posts_helper_test.rb +4 -0
  82. data/test/dummy/test/models/post_test.rb +7 -0
  83. data/test/dummy/tmp/cache/assets/development/sass/5e65457e8790b21bb66467547fe443e595671eb3/foundation.scssc +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_alert-boxes.scssc +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_block-grid.scssc +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_breadcrumbs.scssc +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_button-groups.scssc +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_buttons.scssc +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_clearing.scssc +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_custom-forms.scssc +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_dropdown-buttons.scssc +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_dropdown.scssc +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_flex-video.scssc +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_forms.scssc +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_global.scssc +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_grid.scssc +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_inline-lists.scssc +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_joyride.scssc +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_keystrokes.scssc +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_labels.scssc +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_magellan.scssc +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_orbit.scssc +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_pagination.scssc +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_panels.scssc +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_pricing-tables.scssc +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_progress-bars.scssc +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_reveal.scssc +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_section.scssc +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_side-nav.scssc +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_split-buttons.scssc +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_sub-nav.scssc +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_switch.scssc +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_tables.scssc +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_thumbs.scssc +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_tooltips.scssc +0 -0
  116. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_top-bar.scssc +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_type.scssc +0 -0
  118. data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_visibility.scssc +0 -0
  119. data/test/dummy/tmp/cache/assets/development/sass/be6f7d6cf81a3a6db6a6427662e44ee1833019b8/_variables.scssc +0 -0
  120. data/test/dummy/tmp/cache/assets/development/sass/e7dc89e57f627c5c3457f0061b0f44a437e7d241/foundation_and_overrides.scssc +0 -0
  121. data/test/dummy/tmp/cache/assets/development/sass/e7dc89e57f627c5c3457f0061b0f44a437e7d241/posts.css.scssc +0 -0
  122. data/test/dummy/tmp/cache/assets/development/sass/e7dc89e57f627c5c3457f0061b0f44a437e7d241/scaffolds.css.scssc +0 -0
  123. data/test/dummy/tmp/cache/assets/development/sprockets/0934a74c755b91d39cd860f2b897d7bc +0 -0
  124. data/test/dummy/tmp/cache/assets/development/sprockets/10fcfbe6ebae11a40c8eac41939a1b9a +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sprockets/165eb35b3e23ae584ab844cf21488572 +0 -0
  127. data/test/dummy/tmp/cache/assets/development/sprockets/18c8a8fcbdedca1a677c9ea1298b273f +0 -0
  128. data/test/dummy/tmp/cache/assets/development/sprockets/21510ea8264eaa94d48104f903b60f39 +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sprockets/22a3157d204c1f8e417a25f01a2dbe45 +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/2d64858078c6c6e2fe621b48bb2f44a9 +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/3351b9ef3e02dfcb9d76588dd6a475f4 +0 -0
  133. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/3cf98597bf272087f067e87accd6285c +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/40e4dc27315c8bb23ab744a9b4109d6d +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/4e7cdefcf4831cb825b0a438f825f4a0 +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/6654975eaa53a225d976278fcb6baa00 +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/7b17de2aa94f5206252e277afe1df40c +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/8b590831eed712236b632c539da643e9 +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/8c2b061e379a23e7c4d207adcf992462 +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/9ef8b3034506be9061b9df2e00698d80 +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/9f93e00a58310561d1989b82ab7b83a7 +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/9fdd00562d6dea819db33bdf1f5cab5b +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/aada318492cd92ae01885ef3911e2717 +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/ab5e341e947338186835e48f72b4c2c3 +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/b2d287803ed50906ebd76cf0a5bbecf2 +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/b7fc7a50cc3464d16f378714639f14e2 +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/bd3936370d0f952ada5774e2230046ed +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/c0541f37a48c06469f284192ae351f9c +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/c2489d6227dee3af2d88176e1f66e4d3 +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/c4a4cc465b11c1d68b8c960371d85011 +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/cc1ffaac4063f53e674de93611e89494 +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/d585a06e2ee6203ccb04c8b84150d14d +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/df2bac93507eb6002368de3d3175b3f7 +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/e459168835a5f27b832ace20874f7c10 +0 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/e523d4e30ed8f7c8ee17d9353278f127 +0 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/f767bf7733f9d255bda5d7ad033ab87f +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/fdfbe7dc13d28459fd24dc948e666efa +0 -0
  162. data/test/manifold_mock_test.rb +7 -0
  163. data/test/test_helper.rb +15 -0
  164. metadata +374 -0
@@ -0,0 +1,154 @@
1
+ GIT
2
+ remote: git://github.com/seyhunak/twitter-bootstrap-rails.git
3
+ revision: 8fd0cc8b5b68165c7336feeb98ca0b622bf92bfb
4
+ specs:
5
+ twitter-bootstrap-rails (2.2.8)
6
+ actionpack (>= 3.1)
7
+ execjs
8
+ rails (>= 3.1)
9
+ railties (>= 3.1)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ actionmailer (4.0.0)
15
+ actionpack (= 4.0.0)
16
+ mail (~> 2.5.3)
17
+ actionpack (4.0.0)
18
+ activesupport (= 4.0.0)
19
+ builder (~> 3.1.0)
20
+ erubis (~> 2.7.0)
21
+ rack (~> 1.5.2)
22
+ rack-test (~> 0.6.2)
23
+ activemodel (4.0.0)
24
+ activesupport (= 4.0.0)
25
+ builder (~> 3.1.0)
26
+ activerecord (4.0.0)
27
+ activemodel (= 4.0.0)
28
+ activerecord-deprecated_finders (~> 1.0.2)
29
+ activesupport (= 4.0.0)
30
+ arel (~> 4.0.0)
31
+ activerecord-deprecated_finders (1.0.3)
32
+ activesupport (4.0.0)
33
+ i18n (~> 0.6, >= 0.6.4)
34
+ minitest (~> 4.2)
35
+ multi_json (~> 1.3)
36
+ thread_safe (~> 0.1)
37
+ tzinfo (~> 0.3.37)
38
+ arel (4.0.0)
39
+ atomic (1.1.14)
40
+ builder (3.1.4)
41
+ coffee-rails (4.0.0)
42
+ coffee-script (>= 2.2.0)
43
+ railties (>= 4.0.0.beta, < 5.0)
44
+ coffee-script (2.2.0)
45
+ coffee-script-source
46
+ execjs
47
+ coffee-script-source (1.6.3)
48
+ commonjs (0.2.7)
49
+ erubis (2.7.0)
50
+ execjs (2.0.2)
51
+ haml (4.0.3)
52
+ tilt
53
+ haml-rails (0.4)
54
+ actionpack (>= 3.1, < 4.1)
55
+ activesupport (>= 3.1, < 4.1)
56
+ haml (>= 3.1, < 4.1)
57
+ railties (>= 3.1, < 4.1)
58
+ hike (1.2.3)
59
+ i18n (0.6.5)
60
+ jbuilder (1.5.1)
61
+ activesupport (>= 3.0.0)
62
+ multi_json (>= 1.2.0)
63
+ jquery-rails (3.0.4)
64
+ railties (>= 3.0, < 5.0)
65
+ thor (>= 0.14, < 2.0)
66
+ json (1.8.0)
67
+ less (2.4.0)
68
+ commonjs (~> 0.2.7)
69
+ less-rails (2.4.2)
70
+ actionpack (>= 3.1)
71
+ less (~> 2.4.0)
72
+ libv8 (3.16.14.3)
73
+ mail (2.5.4)
74
+ mime-types (~> 1.16)
75
+ treetop (~> 1.4.8)
76
+ mime-types (1.25)
77
+ minitest (4.7.5)
78
+ multi_json (1.8.1)
79
+ polyglot (0.3.3)
80
+ rack (1.5.2)
81
+ rack-test (0.6.2)
82
+ rack (>= 1.0)
83
+ rails (4.0.0)
84
+ actionmailer (= 4.0.0)
85
+ actionpack (= 4.0.0)
86
+ activerecord (= 4.0.0)
87
+ activesupport (= 4.0.0)
88
+ bundler (>= 1.3.0, < 2.0)
89
+ railties (= 4.0.0)
90
+ sprockets-rails (~> 2.0.0)
91
+ railties (4.0.0)
92
+ actionpack (= 4.0.0)
93
+ activesupport (= 4.0.0)
94
+ rake (>= 0.8.7)
95
+ thor (>= 0.18.1, < 2.0)
96
+ rake (10.1.0)
97
+ rdoc (3.12.2)
98
+ json (~> 1.4)
99
+ ref (1.0.5)
100
+ sass (3.2.12)
101
+ sass-rails (4.0.0)
102
+ railties (>= 4.0.0.beta, < 5.0)
103
+ sass (>= 3.1.10)
104
+ sprockets-rails (~> 2.0.0)
105
+ sdoc (0.3.20)
106
+ json (>= 1.1.3)
107
+ rdoc (~> 3.10)
108
+ sprockets (2.10.0)
109
+ hike (~> 1.2)
110
+ multi_json (~> 1.0)
111
+ rack (~> 1.0)
112
+ tilt (~> 1.1, != 1.3.0)
113
+ sprockets-rails (2.0.0)
114
+ actionpack (>= 3.0)
115
+ activesupport (>= 3.0)
116
+ sprockets (~> 2.8)
117
+ sqlite3 (1.3.8)
118
+ therubyracer (0.12.0)
119
+ libv8 (~> 3.16.14.0)
120
+ ref
121
+ thor (0.18.1)
122
+ thread_safe (0.1.3)
123
+ atomic
124
+ tilt (1.4.1)
125
+ treetop (1.4.15)
126
+ polyglot
127
+ polyglot (>= 0.3.1)
128
+ turbolinks (1.3.0)
129
+ coffee-rails
130
+ tzinfo (0.3.37)
131
+ uglifier (2.2.1)
132
+ execjs (>= 0.3.0)
133
+ multi_json (~> 1.0, >= 1.0.2)
134
+ zurb-foundation (4.3.2)
135
+ sass (>= 3.2.0)
136
+
137
+ PLATFORMS
138
+ ruby
139
+
140
+ DEPENDENCIES
141
+ coffee-rails (~> 4.0.0)
142
+ haml-rails
143
+ jbuilder (~> 1.2)
144
+ jquery-rails
145
+ less-rails
146
+ rails (= 4.0.0)
147
+ sass-rails (~> 4.0.0)
148
+ sdoc
149
+ sqlite3
150
+ therubyracer
151
+ turbolinks
152
+ twitter-bootstrap-rails!
153
+ uglifier (>= 1.3.0)
154
+ zurb-foundation
@@ -0,0 +1,28 @@
1
+ == README
2
+
3
+ This README would normally document whatever steps are necessary to get the
4
+ application up and running.
5
+
6
+ Things you may want to cover:
7
+
8
+ * Ruby version
9
+
10
+ * System dependencies
11
+
12
+ * Configuration
13
+
14
+ * Database creation
15
+
16
+ * Database initialization
17
+
18
+ * How to run the test suite
19
+
20
+ * Services (job queues, cache servers, search engines, etc.)
21
+
22
+ * Deployment instructions
23
+
24
+ * ...
25
+
26
+
27
+ Please feel free to use a different markup language if you do not plan to run
28
+ <tt>rake doc:app</tt>.
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+
6
+ Dummy::Application.load_tasks
@@ -0,0 +1,15 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
14
+
15
+ $(function(){ $(document).foundation(); });
@@ -0,0 +1,3 @@
1
+ jQuery ->
2
+ $("a[rel~=popover], .has-popover").popover()
3
+ $("a[rel~=tooltip], .has-tooltip").tooltip()
@@ -0,0 +1,3 @@
1
+ # Place all the behaviors and hooks related to the matching controller here.
2
+ # All this logic will automatically be available in application.js.
3
+ # You can use CoffeeScript in this file: http://coffeescript.org/
@@ -0,0 +1,14 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require foundation_and_overrides
13
+ *= require_tree .
14
+ */
@@ -0,0 +1,30 @@
1
+ @import "twitter/bootstrap/bootstrap";
2
+ @import "twitter/bootstrap/responsive";
3
+
4
+ // Set the correct sprite paths
5
+ @iconSpritePath: image-url("twitter/bootstrap/glyphicons-halflings.png");
6
+ @iconWhiteSpritePath: image-url("twitter/bootstrap/glyphicons-halflings-white.png");
7
+
8
+ // Set the Font Awesome (Font Awesome is default. You can disable by commenting below lines)
9
+ @fontAwesomeEotPath: asset-url("fontawesome-webfont.eot");
10
+ @fontAwesomeEotPath_iefix: asset-url("fontawesome-webfont.eot?#iefix");
11
+ @fontAwesomeWoffPath: asset-url("fontawesome-webfont.woff");
12
+ @fontAwesomeTtfPath: asset-url("fontawesome-webfont.ttf");
13
+ @fontAwesomeSvgPath: asset-url("fontawesome-webfont.svg#fontawesomeregular");
14
+
15
+ // Font Awesome
16
+ @import "fontawesome/font-awesome";
17
+
18
+ // Glyphicons
19
+ //@import "twitter/bootstrap/sprites.less";
20
+
21
+ // Your custom LESS stylesheets goes here
22
+ //
23
+ // Since bootstrap was imported above you have access to its mixins which
24
+ // you may use and inherit here
25
+ //
26
+ // If you'd like to override bootstrap's own variables, you can do so here as well
27
+ // See http://twitter.github.com/bootstrap/customize.html#variables for their names and documentation
28
+ //
29
+ // Example:
30
+ // @linkColor: #ff0000;
@@ -0,0 +1,1327 @@
1
+ //
2
+ // Foundation Variables
3
+ //
4
+
5
+ // The default font-size is set to 100% of the browser style sheet (usually 16px)
6
+ // for compatibility with browser-based text zoom or user-set defaults.
7
+ $base-font-size: 100% !default;
8
+
9
+ // $base-line-height is 24px while $base-font-size is 16px
10
+ // $base-line-height: 150%;
11
+
12
+ // This is the default html and body font-size for the base em value.
13
+
14
+ // Since the typical default browser font-size is 16px, that makes the calculation for grid size.
15
+ // If you want your base font-size to be a different size and not have it effect grid size too,
16
+ // set the value of $em-base to $base-font-size ($em-base: $base-font-size;)
17
+ $em-base: 16px !default;
18
+
19
+ // It strips the unit of measure and returns it
20
+ @function strip-unit($num) {
21
+ @return $num / ($num * 0 + 1);
22
+ }
23
+
24
+ // Converts "px" to "em" using the ($)em-base
25
+ @function convert-to-em($value, $base-value: $em-base) {
26
+ $value: strip-unit($value) / strip-unit($base-value) * 1em;
27
+ @if ($value == 0em) { $value: 0; } // Turn 0em into 0
28
+ @return $value;
29
+ }
30
+
31
+ // Working in ems is annoying. Think in pixels by using this handy function, em-calc(#)
32
+ // Just enter the number, no need to mention "px"
33
+ @function em-calc($values, $base-value: $em-base) {
34
+ $max: length($values); // Get the total number of parameters passed
35
+
36
+ // If there is only 1 parameter, then return it as an integer.
37
+ // This is done because a list can't be multiplied or divided even if it contains a single value
38
+ @if $max == 1 { @return convert-to-em(nth($values, 1), $base-value); }
39
+
40
+ $emValues: (); // This will eventually store the converted $values in a list
41
+ @for $i from 1 through $max {
42
+ $emValues: append($emValues, convert-to-em(nth($values, $i), $base-value));
43
+ }
44
+ @return $emValues;
45
+ }
46
+
47
+ //Retaining this for backward compatability
48
+
49
+ @function emCalc($pxWidth) {
50
+ @return $pxWidth / $em-base * 1em;
51
+ }
52
+
53
+ // Maybe you want to create rems with pixels
54
+ // $rem-base: 0.625 !default; //Set the value corresponding to body font size. In this case, you should set as: body {font-size: 62.5%;}
55
+ // @function rem-calc($pxWidth) {
56
+ // @return $pxWidth / $rem-base * 1rem;
57
+ // }
58
+
59
+ // Change whether or not you include browser prefixes
60
+ // $experimental: true;
61
+
62
+ // Various global styles
63
+
64
+ $default-float: left;
65
+
66
+ // $body-bg: #fff;
67
+ // $body-font-color: #222;
68
+ // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
69
+ // $body-font-weight: normal;
70
+ // $body-font-style: normal;
71
+
72
+ // Font-smoothing
73
+
74
+ // $font-smoothing: antialiased;
75
+
76
+ // Text direction settings
77
+
78
+ // $text-direction: ltr;
79
+
80
+ // Colors
81
+
82
+ // $primary-color: #2ba6cb;
83
+ // $secondary-color: #e9e9e9;
84
+ // $alert-color: #c60f13;
85
+ // $success-color: #5da423;
86
+
87
+ // Make sure border radius matches unless we want it different.
88
+
89
+ // $global-radius: 3px;
90
+ // $global-rounded: 1000px;
91
+
92
+ // Inset shadow shiny edges and depressions.
93
+
94
+ // $shiny-edge-size: 0 1px 0;
95
+ // $shiny-edge-color: rgba(#fff, .5);
96
+ // $shiny-edge-active-color: rgba(#000, .2);
97
+
98
+ // Control whether or not CSS classes come through in the CSS files.
99
+
100
+ // $include-html-classes: true;
101
+ // $include-print-styles: true;
102
+ // $include-html-global-classes: $include-html-classes;
103
+ // $include-html-inline-list-classes: $include-html-classes;
104
+ // $include-html-type-classes: $include-html-classes;
105
+ // $include-html-grid-classes: $include-html-classes;
106
+ // $include-html-visibility-classes: $include-html-classes;
107
+ // $include-html-button-classes: $include-html-classes;
108
+ // $include-html-form-classes: $include-html-classes;
109
+ // $include-html-custom-form-classes: $include-html-classes;
110
+ // $include-html-media-classes: $include-html-classes;
111
+ // $include-html-section-classes: $include-html-classes;
112
+ // $include-html-orbit-classes: $include-html-classes;
113
+ // $include-html-reveal-classes: $include-html-classes;
114
+ // $include-html-joyride-classes: $include-html-classes;
115
+ // $include-html-clearing-classes: $include-html-classes;
116
+ // $include-html-alert-classes: $include-html-classes;
117
+ // $include-html-nav-classes: $include-html-classes;
118
+ // $include-html-top-bar-classes: $include-html-classes;
119
+ // $include-html-label-classes: $include-html-classes;
120
+ // $include-html-panel-classes: $include-html-classes;
121
+ // $include-html-pricing-classes: $include-html-classes;
122
+ // $include-html-progress-classes: $include-html-classes;
123
+ // $include-html-magellan-classes: $include-html-classes;
124
+ // $include-html-tooltip-classes: $include-html-classes;
125
+
126
+ // Media Queries
127
+
128
+ // $small-screen: 768px;
129
+ // $medium-screen: 1280px;
130
+ // $large-screen: 1440px;
131
+
132
+ // $screen: "only screen";
133
+ // $small: "only screen and (min-width: #{$small-screen})";
134
+ // $medium: "only screen and (min-width: #{$medium-screen})";
135
+ // $large: "only screen and (min-width: #{$large-screen})";
136
+ // $landscape: "only screen and (orientation: landscape)";
137
+ // $portrait: "only screen and (orientation: portrait)";
138
+
139
+ //// Cursors
140
+
141
+ //Custom use example -> $cursor-default-value: url(http://cursors-site.net/path/to/custom/cursor/default.cur),progress;
142
+
143
+ // $cursor-crosshair-value: "crosshair";
144
+ // $cursor-default-value: "default";
145
+ // $cursor-pointer-value: "pointer";
146
+ // $cursor-help-value: "help";
147
+
148
+ //
149
+ // Grid Variables
150
+ //
151
+
152
+ // $row-width: em-calc(1000);
153
+ // $column-gutter: em-calc(30);
154
+ // $total-columns: 12;
155
+
156
+ //
157
+ // Block Grid Variables
158
+ //
159
+
160
+ // We use this to control the maximum number of block grid elements per row
161
+
162
+ // $block-grid-elements: 12;
163
+ // $block-grid-default-spacing: em-calc(20);
164
+
165
+ // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
166
+
167
+ // $block-grid-media-queries: true;
168
+
169
+ //
170
+ // Typography Variables
171
+ //
172
+
173
+ // Control header font styles
174
+
175
+ // $header-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
176
+ // $header-font-weight: bold;
177
+ // $header-font-style: normal;
178
+ // $header-font-color: #222;
179
+ // $header-line-height: 1.4;
180
+ // $header-top-margin: .2em;
181
+ // $header-bottom-margin: .5em;
182
+ // $header-text-rendering: optimizeLegibility;
183
+
184
+ // Control header font sizes
185
+
186
+ // $h1-font-size: em-calc(44);
187
+ // $h2-font-size: em-calc(37);
188
+ // $h3-font-size: em-calc(27);
189
+ // $h4-font-size: em-calc(23);
190
+ // $h5-font-size: em-calc(18);
191
+ // $h6-font-size: 1em;
192
+
193
+ // Control how subheaders are styled.
194
+
195
+ // $subheader-line-height: 1.4;
196
+ // $subheader-font-color: lighten($header-font-color, 30%);
197
+ // $subheader-font-weight: 300;
198
+ // $subheader-top-margin: .2em;
199
+ // $subheader-bottom-margin: .5em;
200
+
201
+ // A general <small> styling
202
+
203
+ // $small-font-size: 60%;
204
+ // $small-font-color: lighten($header-font-color, 30%);
205
+
206
+ // Style paragraphs
207
+
208
+ // $paragraph-font-family: inherit;
209
+ // $paragraph-font-weight: normal;
210
+ // $paragraph-font-size: 1em;
211
+ // $paragraph-line-height: 1.6;
212
+ // $paragraph-margin-bottom: em-calc(20);
213
+ // $paragraph-aside-font-size: em-calc(14);
214
+ // $paragraph-aside-line-height: 1.35;
215
+ // $paragraph-aside-font-style: italic;
216
+ // $paragraph-text-rendering: optimizeLegibility;
217
+
218
+ // Style <code> tags
219
+
220
+ // $code-color: darken($alert-color, 15%);
221
+ // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
222
+ // $code-font-weight: bold;
223
+
224
+ // Style anchors
225
+
226
+ // $anchor-text-decoration: none;
227
+ // $anchor-font-color: $primary-color;
228
+ // $anchor-font-color-hover: darken($primary-color, 5%);
229
+
230
+ // Style the <hr> element
231
+
232
+ // $hr-border-width: 1px;
233
+ // $hr-border-style: solid;
234
+ // $hr-border-color: #ddd;
235
+ // $hr-margin: em-calc(20);
236
+
237
+ // Style lists
238
+
239
+ // $list-style-position: outside;
240
+ // $list-side-margin: 0;
241
+ // $list-nested-margin: em-calc(20);
242
+ // $definition-list-header-weight: bold;
243
+ // $definition-list-header-margin-bottom: .3em;
244
+ // $definition-list-margin-bottom: em-calc(12);
245
+
246
+ // Style blockquotes
247
+
248
+ // $blockquote-font-color: lighten($header-font-color, 30%);
249
+ // $blockquote-padding: em-calc(9, 20, 0, 19);
250
+ // $blockquote-border: 1px solid #ddd;
251
+ // $blockquote-cite-font-size: em-calc(13);
252
+ // $blockquote-cite-font-color: lighten($header-font-color, 20%);
253
+ // $blockquote-cite-link-color: $blockquote-cite-font-color;
254
+
255
+ // Acronym styles
256
+
257
+ // $acronym-underline: 1px dotted #ddd;
258
+
259
+ // Control padding and margin
260
+
261
+ // $microformat-padding: em-calc(10 12);
262
+ // $microformat-margin: em-calc(0 0 20 0);
263
+
264
+ // Control the border styles
265
+
266
+ // $microformat-border-width: 1px;
267
+ // $microformat-border-style: solid;
268
+ // $microformat-border-color: #ddd;
269
+
270
+ // Control full name font styles
271
+
272
+ // $microformat-fullname-font-weight: bold;
273
+ // $microformat-fullname-font-size: em-calc(15);
274
+
275
+ // Control the summary font styles
276
+
277
+ // $microformat-summary-font-weight: bold;
278
+
279
+ // Control abbr padding
280
+ // $microformat-abbr-padding: em-calc(0 1);
281
+
282
+ // Control abbr font styles
283
+
284
+ // $microformat-abbr-font-weight: bold;
285
+ // $microformat-abbr-font-decoration: none;
286
+
287
+ //
288
+ // Form Variables
289
+ //
290
+
291
+ // We use this to set the base for lots of form spacing and positioning styles
292
+
293
+ // $form-spacing: em-calc(16);
294
+
295
+ // We use these to style the labels in different ways
296
+
297
+ // $form-label-pointer: pointer;
298
+ // $form-label-font-size: em-calc(14);
299
+ // $form-label-font-weight: 500;
300
+ // $form-label-font-color: lighten(#000, 30%);
301
+ // $form-label-bottom-margin: em-calc(3);
302
+ // $input-font-family: inherit;
303
+ // $input-font-color: rgba(0,0,0,0.75);
304
+ // $input-font-size: em-calc(14);
305
+ // $input-bg-color: #fff;
306
+ // $input-focus-bg-color: darken(#fff, 2%);
307
+ // $input-border-color: darken(#fff, 20%);
308
+ // $input-focus-border-color: darken(#fff, 40%);
309
+ // $input-border-style: solid;
310
+ // $input-border-width: 1px;
311
+ // $input-disabled-bg: #ddd;
312
+ // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
313
+ // $input-include-glowing-effect: true;
314
+
315
+ // We use these to style the fieldset border and spacing.
316
+
317
+ // $fieldset-border-style: solid;
318
+ // $fieldset-border-width: 1px;
319
+ // $fieldset-border-color: #ddd;
320
+ // $fieldset-padding: em-calc(20);
321
+ // $fieldset-margin: em-calc(18 0);
322
+
323
+ // We use these to style the legends when you use them
324
+
325
+ // $legend-bg: #fff;
326
+ // $legend-font-weight: bold;
327
+ // $legend-padding: em-calc(0 3);
328
+
329
+ // We use these to style the prefix and postfix input elements
330
+
331
+ // $input-prefix-bg: darken(#fff, 5%);
332
+ // $input-prefix-border-color: darken(#fff, 20%);
333
+ // $input-prefix-border-size: 1px;
334
+ // $input-prefix-border-type: solid;
335
+ // $input-prefix-overflow: hidden;
336
+ // $input-prefix-font-color: #333;
337
+ // $input-prefix-font-color-alt: #fff;
338
+
339
+ // We use these to style the error states for inputs and labels
340
+
341
+ // $input-error-message-padding: em-calc(6 4);
342
+ // $input-error-message-top: 0;
343
+ // $input-error-message-font-size: em-calc(12);
344
+ // $input-error-message-font-weight: bold;
345
+ // $input-error-message-font-color: #fff;
346
+ // $input-error-message-font-color-alt: #333;
347
+
348
+ // We use this to style the glowing effect of inputs when focused
349
+
350
+ // $glowing-effect-fade-time: 0.45s;
351
+ // $glowing-effect-color: $input-focus-border-color;
352
+
353
+ //
354
+ // Button Variables
355
+ //
356
+
357
+ // We use these to build padding for buttons.
358
+
359
+ // $button-med: em-calc(12);
360
+ // $button-tny: em-calc(7);
361
+ // $button-sml: em-calc(9);
362
+ // $button-lrg: em-calc(16);
363
+
364
+ // We use this to control the display property.
365
+
366
+ // $button-display: inline-block;
367
+ // $button-margin-bottom: em-calc(20);
368
+
369
+ // We use these to control button text styles.
370
+
371
+ // $button-font-family: inherit;
372
+ // $button-font-color: #fff;
373
+ // $button-font-color-alt: #333;
374
+ // $button-font-med: em-calc(16);
375
+ // $button-font-tny: em-calc(11);
376
+ // $button-font-sml: em-calc(13);
377
+ // $button-font-lrg: em-calc(20);
378
+ // $button-font-weight: bold;
379
+ // $button-font-align: center;
380
+
381
+ // We use these to control various hover effects.
382
+
383
+ // $button-function-factor: 10%;
384
+
385
+ // We use these to control button border styles.
386
+
387
+ // $button-border-width: 1px;
388
+ // $button-border-style: solid;
389
+
390
+ // We use this to set the default radius used throughout the core.
391
+
392
+ // $button-radius: $global-radius;
393
+ // $button-round: $global-rounded;
394
+
395
+ // We use this to set default opacity for disabled buttons.
396
+
397
+ // $button-disabled-opacity: 0.6;
398
+
399
+ //
400
+ // Button Groups
401
+ //
402
+
403
+ // Sets the margin for the right side by default, and the left margin if right-to-left direction is used
404
+
405
+ // $button-bar-margin-opposite: em-calc(10);
406
+
407
+ //
408
+ // Dropdown Button Variables
409
+ //
410
+
411
+ // We use these to set the color of the pip in dropdown buttons
412
+
413
+ // $dropdown-button-pip-color: #fff;
414
+ // $dropdown-button-pip-color-alt: #333;
415
+
416
+ // We use these to style tiny dropdown buttons
417
+
418
+ // $dropdown-button-padding-tny: $button-tny * 5;
419
+ // $dropdown-button-pip-size-tny: $button-tny;
420
+ // $dropdown-button-pip-opposite-tny: $button-tny * 2;
421
+ // $dropdown-button-pip-top-tny: -$button-tny / 2 + em-calc(1);
422
+
423
+ // We use these to style small dropdown buttons
424
+
425
+ // $dropdown-button-padding-sml: $button-sml * 5;
426
+ // $dropdown-button-pip-size-sml: $button-sml;
427
+ // $dropdown-button-pip-opposite-sml: $button-sml * 2;
428
+ // $dropdown-button-pip-top-sml: -$button-sml / 2 + em-calc(1);
429
+
430
+ // We use these to style medium dropdown buttons
431
+
432
+ // $dropdown-button-padding-med: $button-med * 4 + em-calc(3);
433
+ // $dropdown-button-pip-size-med: $button-med - em-calc(3);
434
+ // $dropdown-button-pip-opposite-med: $button-med * 2;
435
+ // $dropdown-button-pip-top-med: -$button-med / 2 + em-calc(2);
436
+
437
+ // We use these to style large dropdown buttons
438
+
439
+ // $dropdown-button-padding-lrg: $button-lrg * 4;
440
+ // $dropdown-button-pip-size-lrg: $button-lrg - em-calc(6);
441
+ // $dropdown-button-pip-opposite-lrg: $button-lrg + em-calc(12);
442
+ // $dropdown-button-pip-top-lrg: -$button-lrg / 2 + em-calc(3);
443
+
444
+ //
445
+ // Split Button Variables
446
+ //
447
+
448
+ // We use these to control different shared styles for Split Buttons
449
+
450
+ // $split-button-function-factor: 15%;
451
+ // $split-button-pip-color: #fff;
452
+ // $split-button-pip-color-alt: #333;
453
+ // $split-button-active-bg-tint: rgba(0,0,0,0.1);
454
+
455
+ // We use these to control tiny split buttons
456
+
457
+ // $split-button-padding-tny: $button-tny * 9;
458
+ // $split-button-span-width-tny: $button-tny * 6.5;
459
+ // $split-button-pip-size-tny: $button-tny;
460
+ // $split-button-pip-top-tny: $button-tny * 2;
461
+ // $split-button-pip-default-float-tny: em-calc(-5);
462
+
463
+ // We use these to control small split buttons
464
+
465
+ // $split-button-padding-sml: $button-sml * 7;
466
+ // $split-button-span-width-sml: $button-sml * 5;
467
+ // $split-button-pip-size-sml: $button-sml;
468
+ // $split-button-pip-top-sml: $button-sml * 1.5;
469
+ // $split-button-pip-default-float-sml: em-calc(-9);
470
+
471
+ // We use these to control medium split buttons
472
+
473
+ // $split-button-padding-med: $button-med * 6.4;
474
+ // $split-button-span-width-med: $button-med * 4;
475
+ // $split-button-pip-size-med: $button-med - em-calc(3);
476
+ // $split-button-pip-top-med: $button-med * 1.5;
477
+ // $split-button-pip-default-float-med: em-calc(-9);
478
+
479
+ // We use these to control large split buttons
480
+
481
+ // $split-button-padding-lrg: $button-lrg * 6;
482
+ // $split-button-span-width-lrg: $button-lrg * 3.75;
483
+ // $split-button-pip-size-lrg: $button-lrg - em-calc(6);
484
+ // $split-button-pip-top-lrg: $button-lrg + em-calc(5);
485
+ // $split-button-pip-default-float-lrg: em-calc(-9);
486
+
487
+ //
488
+ // Alert Box Variables
489
+ //
490
+
491
+ // We use this to control alert padding.
492
+
493
+ // $alert-padding-top: em-calc(11);
494
+ // $alert-padding-default-float: $alert-padding-top;
495
+ // $alert-padding-opposite-direction: $alert-padding-top + em-calc(10);
496
+ // $alert-padding-bottom: $alert-padding-top + em-calc(1);
497
+
498
+ // We use these to control text style.
499
+
500
+ // $alert-font-weight: bold;
501
+ // $alert-font-size: em-calc(14);
502
+ // $alert-font-color: #fff;
503
+ // $alert-font-color-alt: darken($secondary-color, 60%);
504
+
505
+ // We use this for close hover effect.
506
+
507
+ // $alert-function-factor: 10%;
508
+
509
+ // We use these to control border styles.
510
+
511
+ // $alert-border-style: solid;
512
+ // $alert-border-width: 1px;
513
+ // $alert-border-color: darken($primary-color, $alert-function-factor);
514
+ // $alert-bottom-margin: em-calc(20);
515
+
516
+ // We use these to style the close buttons
517
+
518
+ // $alert-close-color: #333;
519
+ // $alert-close-position: em-calc(5);
520
+ // $alert-close-font-size: em-calc(22);
521
+ // $alert-close-opacity: 0.3;
522
+ // $alert-close-opacity-hover: 0.5;
523
+ // $alert-close-padding: 5px 4px 4px;
524
+
525
+ // We use this to control border radius
526
+
527
+ // $alert-radius: $global-radius;
528
+
529
+
530
+ //
531
+ // Breadcrumb Variables
532
+ //
533
+
534
+ // We use this to set the background color for the breadcrumb container.
535
+
536
+ // $crumb-bg: lighten($secondary-color, 5%);
537
+
538
+ // We use these to set the padding around the breadcrumbs.
539
+
540
+ // $crumb-padding: em-calc(9 14 9);
541
+ // $crumb-side-padding: em-calc(12);
542
+
543
+ // We use these to control border styles.
544
+
545
+ // $crumb-function-factor: 10%;
546
+ // $crumb-border-size: 1px;
547
+ // $crumb-border-style: solid;
548
+ // $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
549
+ // $crumb-radius: $global-radius;
550
+
551
+ // We use these to set various text styles for breadcrumbs.
552
+
553
+ // $crumb-font-size: em-calc(11);
554
+ // $crumb-font-color: $primary-color;
555
+ // $crumb-font-color-current: #333;
556
+ // $crumb-font-color-unavailable: #999;
557
+ // $crumb-font-transform: uppercase;
558
+ // $crumb-link-decor: underline;
559
+
560
+ // We use these to control the slash between breadcrumbs
561
+
562
+ // $crumb-slash-color: #aaa;
563
+ // $crumb-slash: "/";
564
+
565
+ //
566
+ // Clearing Variables
567
+ //
568
+
569
+ // We use these to set the background colors for parts of Clearing.
570
+
571
+ // $clearing-bg: #111;
572
+ // $clearing-caption-bg: $clearing-bg;
573
+ // $clearing-carousel-bg: #111;
574
+ // $clearing-img-bg: $clearing-bg;
575
+
576
+ // We use these to style the close button
577
+
578
+ // $clearing-close-color: #fff;
579
+ // $clearing-close-size: 40px;
580
+
581
+ // We use these to style the arrows
582
+
583
+ // $clearing-arrow-size: 16px;
584
+ // $clearing-arrow-color: $clearing-close-color;
585
+
586
+ // We use these to style captions
587
+
588
+ // $clearing-caption-font-color: #fff;
589
+ // $clearing-caption-padding: 10px 30px;
590
+
591
+ // We use these to make the image and carousel height and style
592
+
593
+ // $clearing-active-img-height: 75%;
594
+ // $clearing-carousel-height: 150px;
595
+ // $clearing-carousel-thumb-width: 175px;
596
+ // $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
597
+
598
+ //
599
+ // Custom Form Variables
600
+ //
601
+
602
+ // We use these to control the basic form styles input styles
603
+
604
+ // $custom-form-border-color: #ccc;
605
+ // $custom-form-border-size: 1px;
606
+ // $custom-form-bg: #fff;
607
+ // $custom-form-bg-disabled: #ddd;
608
+ // $custom-form-input-size: 16px;
609
+ // $custom-form-check-color: #222;
610
+ // $custom-form-check-size: 16px;
611
+ // $custom-form-radio-size: 8px;
612
+ // $custom-form-checkbox-radius: 0;
613
+
614
+ // We use these to style the custom select form element.
615
+
616
+ // $custom-select-bg: #fff;
617
+ // $custom-select-fade-to-color: #f3f3f3;
618
+ // $custom-select-border-color: #ddd;
619
+ // $custom-select-triangle-color: #aaa;
620
+ // $custom-select-triangle-color-open: #222;
621
+ // $custom-select-height: em-calc(13) + ($form-spacing * 1.5);
622
+ // $custom-select-margin-bottom: em-calc(20);
623
+ // $custom-select-font-color-selected: #141414;
624
+ // $custom-select-disabled-color: #888;
625
+
626
+ // We use these to control the style of the custom select dropdown element.
627
+
628
+ // $custom-dropdown-height: 200px;
629
+ // $custom-dropdown-bg: #fff;
630
+ // $custom-dropdown-border-color: darken(#fff, 20%);
631
+ // $custom-dropdown-border-width: 1px;
632
+ // $custom-dropdown-border-style: solid;
633
+ // $custom-dropdown-font-color: #555;
634
+ // $custom-dropdown-font-size: em-calc(14);
635
+ // $custom-dropdown-color-selected: #eeeeee;
636
+ // $custom-dropdown-font-color-selected: #000;
637
+ // $custom-dropdown-shadow: 0 2px 2px 0 rgba(0,0,0,0.1);
638
+ // $custom-dropdown-offset-top: auto;
639
+ // $custom-dropdown-list-padding: em-calc(4);
640
+ // $custom-dropdown-default-float-padding: em-calc(6);
641
+ // $custom-dropdown-opposite-padding: em-calc(38);
642
+ // $custom-dropdown-list-item-min-height: em-calc(24);
643
+ // $custom-dropdown-width-small: 134px;
644
+ // $custom-dropdown-width-medium: 254px;
645
+ // $custom-dropdown-width-large: 434px;
646
+
647
+ //
648
+ // Dropdown Variables
649
+ //
650
+
651
+ // We use these to controls height and width styles.
652
+
653
+ // $f-dropdown-max-width: 200px;
654
+ // $f-dropdown-height: auto;
655
+ // $f-dropdown-max-height: none;
656
+ // $f-dropdown-margin-top: 2px;
657
+
658
+ // We use this to control the background color
659
+
660
+ // $f-dropdown-bg: #fff;
661
+
662
+ // We use this to set the border styles for dropdowns.
663
+
664
+ // $f-dropdown-border-style: solid;
665
+ // $f-dropdown-border-width: 1px;
666
+ // $f-dropdown-border-color: darken(#fff, 20%);
667
+
668
+ // We use these to style the triangle pip.
669
+
670
+ // $f-dropdown-triangle-size: 6px;
671
+ // $f-dropdown-triangle-color: #fff;
672
+ // $f-dropdown-triangle-side-offset: 10px;
673
+
674
+ // We use these to control styles for the list elements.
675
+
676
+ // $f-dropdown-list-style: none;
677
+ // $f-dropdown-font-color: #555;
678
+ // $f-dropdown-font-size: em-calc(14);
679
+ // $f-dropdown-list-padding: em-calc(5 10);
680
+ // $f-dropdown-line-height: em-calc(18);
681
+ // $f-dropdown-list-hover-bg: #eeeeee;
682
+ // $dropdown-mobile-default-float: 0;
683
+
684
+ // We use this to control the styles for when the dropdown has custom content.
685
+
686
+ // $f-dropdown-content-padding: em-calc(20);
687
+
688
+ //
689
+ // Flex Video Variables
690
+ //
691
+
692
+ // We use these to control video container padding and margins
693
+
694
+ // $flex-video-padding-top: em-calc(25);
695
+ // $flex-video-padding-bottom: 67.5%;
696
+ // $flex-video-margin-bottom: em-calc(16);
697
+
698
+ // We use this to control widescreen bottom padding
699
+
700
+ // $flex-video-widescreen-padding-bottom: 57.25%;
701
+
702
+ //
703
+ // Inline List Variables
704
+ //
705
+
706
+ // We use this to control the margins and padding of the inline list.
707
+
708
+ // $inline-list-top-margin: 0;
709
+ // $inline-list-opposite-margin: 0;
710
+ // $inline-list-bottom-margin: em-calc(17);
711
+ // $inline-list-default-float-margin: em-calc(-22);
712
+
713
+ // $inline-list-padding: 0;
714
+
715
+ // We use this to control the overflow of the inline list.
716
+
717
+ // $inline-list-overflow: hidden;
718
+
719
+ // We use this to control the list items
720
+
721
+ // $inline-list-display: block;
722
+
723
+ // We use this to control any elments within list items
724
+
725
+ // $inline-list-children-display: block;
726
+
727
+ //
728
+ // Joyride Variables
729
+ //
730
+
731
+ // Controlling default Joyride styles
732
+
733
+ // $joyride-tip-bg: rgb(0,0,0);
734
+ // $joyride-tip-default-width: 300px;
735
+ // $joyride-tip-padding: em-calc(18 20 24);
736
+ // $joyride-tip-border: solid 1px #555;
737
+ // $joyride-tip-radius: 4px;
738
+ // $joyride-tip-position-offset: 22px;
739
+
740
+ // Here, we're setting the tip dont styles
741
+
742
+ // $joyride-tip-font-color: #fff;
743
+ // $joyride-tip-font-size: em-calc(14);
744
+ // $joyride-tip-header-weight: bold;
745
+
746
+ // This changes the nub size
747
+
748
+ // $joyride-tip-nub-size: 14px;
749
+
750
+ // This adjusts the styles for the timer when its enabled
751
+
752
+ // $joyride-tip-timer-width: 50px;
753
+ // $joyride-tip-timer-height: 3px;
754
+ // $joyride-tip-timer-color: #666;
755
+
756
+ // This changes up the styles for the close button
757
+
758
+ // $joyride-tip-close-color: #777;
759
+ // $joyride-tip-close-size: 30px;
760
+ // $joyride-tip-close-weight: normal;
761
+
762
+ // When Joyride is filling the screen, we use this style for the bg
763
+
764
+ // $joyride-screenfill: rgba(0,0,0,0.5);
765
+
766
+ //
767
+ // Keystroke Variables
768
+ //
769
+
770
+ // We use these to control text styles.
771
+
772
+ // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
773
+ // $keystroke-font-size: em-calc(14);
774
+ // $keystroke-font-color: #222;
775
+ // $keystroke-font-color-alt: #fff;
776
+ // $keystroke-function-factor: 7%;
777
+
778
+ // We use this to control keystroke padding.
779
+
780
+ // $keystroke-padding: em-calc(2 4 0);
781
+
782
+ // We use these to control background and border styles.
783
+
784
+ // $keystroke-bg: darken(#fff, $keystroke-function-factor);
785
+ // $keystroke-border-style: solid;
786
+ // $keystroke-border-width: 1px;
787
+ // $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
788
+ // $keystroke-radius: $global-radius;
789
+
790
+ //
791
+ // Label Variables
792
+ //
793
+
794
+ // We use these to style the labels
795
+
796
+ // $label-padding: em-calc(3 10 4);
797
+ // $label-radius: $global-radius;
798
+
799
+ // We use these to style the label text
800
+
801
+ // $label-font-sizing: em-calc(14);
802
+ // $label-font-weight: bold;
803
+ // $label-font-color: #333;
804
+ // $label-font-color-alt: #fff;
805
+
806
+ //
807
+ // Magellan Variables
808
+ //
809
+
810
+ // $magellan-bg: #fff;
811
+ // $magellan-padding: 10px;
812
+
813
+ //
814
+ // Orbit Settings
815
+ //
816
+
817
+ // We use these to control the caption styles
818
+
819
+ // $orbit-container-bg: #f5f5f5;
820
+ // $orbit-caption-bg: rgba(0,0,0,0.6);
821
+ // $orbit-caption-font-color: #fff;
822
+ // $orbit-caption-font-size: emCalc(14);
823
+ // $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
824
+ // $orbit-caption-padding: emCalc(10,14);
825
+ // $orbit-caption-height: auto;
826
+
827
+ // We use these to control the left/right nav styles
828
+
829
+ // $orbit-nav-bg: rgba(0,0,0,0.6);
830
+ // $orbit-nav-bg-hover: rgba(0,0,0,0.6);
831
+ // $orbit-nav-arrow-color: #fff;
832
+ // $orbit-nav-arrow-color-hover: #ccc;
833
+
834
+ // We use these to control the timer styles
835
+
836
+ // $orbit-timer-bg: rgba(0,0,0,0.6);
837
+ // $orbit-timer-show-progress-bar: true;
838
+
839
+ // We use these to control the bullet nav styles
840
+
841
+ // $orbit-bullet-nav-color: #999;
842
+ // $orbit-bullet-nav-color-active: #555;
843
+ // $orbit-bullet-radius: emCalc(18);
844
+
845
+ // We use these to controls the style of slide numbers
846
+
847
+ // $orbit-slide-number-bg: rgba(0,0,0,0);
848
+ // $orbit-slide-number-font-color: #fff;
849
+ // $orbit-slide-number-padding: em-calc(5);
850
+
851
+ // Graceful Loading Wrapper and preloader
852
+
853
+ // $wrapper-class: "slideshow-wrapper";
854
+ // $preloader-class: "preloader";
855
+
856
+ //
857
+ // Pagination Variables
858
+ //
859
+
860
+ // We use these to control the pagination container
861
+
862
+ // $pagination-height: em-calc(24);
863
+ // $pagination-margin: em-calc(-5);
864
+
865
+ // We use these to set the list-item properties
866
+
867
+ // $pagination-li-float: $default-float;
868
+ // $pagination-li-height: em-calc(24);
869
+ // $pagination-li-font-color: #222;
870
+ // $pagination-li-font-size: em-calc(14);
871
+ // $pagination-li-margin: em-calc(5);
872
+
873
+ // We use these for the pagination anchor links
874
+
875
+ // $pagination-link-pad: em-calc(1 7 1);
876
+ // $pagination-link-font-color: #999;
877
+ // $pagination-link-active-bg: darken(#fff, 10%);
878
+
879
+ // We use these for disabled anchor links
880
+
881
+ // $pagination-link-unavailable-cursor: default;
882
+ // $pagination-link-unavailable-font-color: #999;
883
+ // $pagination-link-unavailable-bg-active: transparent;
884
+
885
+ // We use these for currently selected anchor links
886
+
887
+ // $pagination-link-current-background: $primary-color;
888
+ // $pagination-link-current-font-color: #fff;
889
+ // $pagination-link-current-font-weight: bold;
890
+ // $pagination-link-current-cursor: default;
891
+ // $pagination-link-current-active-bg: $primary-color;
892
+
893
+ //
894
+ // Panel Variables
895
+ //
896
+
897
+ // We use these to control the background and border styles
898
+
899
+ // $panel-bg: darken(#fff, 5%);
900
+ // $panel-border-style: solid;
901
+ // $panel-border-size: 1px;
902
+
903
+ // We use this % to control how much we darken things on hover
904
+
905
+ // $panel-function-factor: 10%;
906
+ // $panel-border-color: darken($panel-bg, $panel-function-factor);
907
+
908
+ // We use these to set default inner padding and bottom margin
909
+
910
+ // $panel-margin-bottom: em-calc(20);
911
+ // $panel-padding: em-calc(20);
912
+
913
+ // We use these to set default font colors
914
+
915
+ // $panel-font-color: #333;
916
+ // $panel-font-color-alt: #fff;
917
+
918
+ // $panel-header-adjust: true;
919
+
920
+ //
921
+ // Pricing Table Variables
922
+ //
923
+
924
+ // We use this to control the border color
925
+
926
+ // $price-table-border: solid 1px #ddd;
927
+
928
+ // We use this to control the bottom margin of the pricing table
929
+
930
+ // $price-table-margin-bottom: em-calc(20);
931
+
932
+ // We use these to control the title styles
933
+
934
+ // $price-title-bg: #ddd;
935
+ // $price-title-padding: em-calc(15 20);
936
+ // $price-title-align: center;
937
+ // $price-title-color: #333;
938
+ // $price-title-weight: bold;
939
+ // $price-title-size: em-calc(16);
940
+
941
+ // We use these to control the price styles
942
+
943
+ // $price-money-bg: #eee;
944
+ // $price-money-padding: em-calc(15, 20);
945
+ // $price-money-align: center;
946
+ // $price-money-color: #333;
947
+ // $price-money-weight: normal;
948
+ // $price-money-size: em-calc(20);
949
+
950
+ // We use these to control the description styles
951
+
952
+ // $price-bg: #fff;
953
+ // $price-desc-color: #777;
954
+ // $price-desc-padding: em-calc(15);
955
+ // $price-desc-align: center;
956
+ // $price-desc-font-size: em-calc(12);
957
+ // $price-desc-weight: normal;
958
+ // $price-desc-line-height: 1.4;
959
+ // $price-desc-bottom-border: dotted 1px #ddd;
960
+
961
+ // We use these to control the list item styles
962
+
963
+ // $price-item-color: #333;
964
+ // $price-item-padding: em-calc(15);
965
+ // $price-item-align: center;
966
+ // $price-item-font-size: em-calc(14);
967
+ // $price-item-weight: normal;
968
+ // $price-item-bottom-border: dotted 1px #ddd;
969
+
970
+ // We use these to control the CTA area styles
971
+
972
+ // $price-cta-bg: #f5f5f5;
973
+ // $price-cta-align: center;
974
+ // $price-cta-padding: em-calc(20 20 0);
975
+
976
+ //
977
+ // Progress Bar Variables
978
+ //
979
+
980
+ // We use this to se the prog bar height
981
+
982
+ // $progress-bar-height: em-calc(25);
983
+ // $progress-bar-color: transparent;
984
+
985
+ // We use these to control the border styles
986
+
987
+ // $progress-bar-border-color: darken(#fff, 20%);
988
+ // $progress-bar-border-size: 1px;
989
+ // $progress-bar-border-style: solid;
990
+ // $progress-bar-border-radius: $global-radius;
991
+
992
+ // We use these to control the margin & padding
993
+
994
+ // $progress-bar-pad: em-calc(2);
995
+ // $progress-bar-margin-bottom: em-calc(10);
996
+
997
+ // We use these to set the meter colors
998
+
999
+ // $progress-meter-color: $primary-color;
1000
+ // $progress-meter-secondary-color: $secondary-color;
1001
+ // $progress-meter-success-color: $success-color;
1002
+ // $progress-meter-alert-color: $alert-color;
1003
+
1004
+ //
1005
+ // Reveal Variables
1006
+ //
1007
+
1008
+ // We use these to control the style of the reveal overlay.
1009
+
1010
+ // $reveal-overlay-bg: rgba(#000, .45);
1011
+ // $reveal-overlay-bg-old: #000;
1012
+
1013
+ // We use these to control the style of the modal itself.
1014
+
1015
+ // $reveal-modal-bg: #fff;
1016
+ // $reveal-position-top: 50px;
1017
+ // $reveal-default-width: 80%;
1018
+ // $reveal-modal-padding: em-calc(20);
1019
+ // $reveal-box-shadow: 0 0 10px rgba(#000,.4);
1020
+
1021
+ // We use these to style the reveal close button
1022
+
1023
+ // $reveal-close-font-size: em-calc(22);
1024
+ // $reveal-close-top: em-calc(8);
1025
+ // $reveal-close-side: em-calc(11);
1026
+ // $reveal-close-color: #aaa;
1027
+ // $reveal-close-weight: bold;
1028
+
1029
+ // We use these to control the modal border
1030
+
1031
+ // $reveal-border-style: solid;
1032
+ // $reveal-border-width: 1px;
1033
+ // $reveal-border-color: #666;
1034
+
1035
+ // $reveal-modal-class: "reveal-modal";
1036
+ // $close-reveal-modal-class: "close-reveal-modal";
1037
+
1038
+ //
1039
+ // Section Variables
1040
+ //
1041
+
1042
+ // We use these to set padding and hover factor
1043
+
1044
+ // $section-title-padding: em-calc(15);
1045
+ // $section-content-padding: em-calc(15);
1046
+ // $section-function-factor: 10%;
1047
+
1048
+ // These style the titles
1049
+
1050
+ // $section-title-color: #333;
1051
+ // $section-title-color-active: #333;
1052
+ // $section-title-bg: #efefef;
1053
+ // $section-title-bg-active: darken($section-title-bg, $section-function-factor);
1054
+ // $section-title-bg-active-tabs: #fff;
1055
+ // $section-title-bg-hover: darken($section-title-bg, $section-function-factor / 2);
1056
+
1057
+ // Want to control border size, here ya go!
1058
+
1059
+ // $section-border-size: 1px;
1060
+ // $section-border-style: solid;
1061
+ // $section-border-color: #ccc;
1062
+
1063
+ // Font controls
1064
+
1065
+ // $section-font-size: em-calc(14);
1066
+
1067
+ // Control the color of the background and some size options
1068
+
1069
+ // $section-content-bg: #fff;
1070
+ // $section-vertical-nav-min-width: em-calc(200);
1071
+ // $section-vertical-tabs-title-width: em-calc(200);
1072
+ // $section-bottom-margin: em-calc(20);
1073
+
1074
+ // $title-selector: ".title";
1075
+ // $content-selector: ".content";
1076
+ // $active-region-selector: ".active";
1077
+
1078
+ //
1079
+ // Side Nav Variables
1080
+ //
1081
+
1082
+ // We use this to control padding.
1083
+
1084
+ // $side-nav-padding: em-calc(14 0);
1085
+
1086
+ // We use these to control list styles.
1087
+
1088
+ // $side-nav-list-type: none;
1089
+ // $side-nav-list-position: inside;
1090
+ // $side-nav-list-margin: em-calc(0 0 7 0);
1091
+
1092
+ // We use these to control link styles.
1093
+
1094
+ // $side-nav-link-color: $primary-color;
1095
+ // $side-nav-link-color-active: lighten(#000, 30%);
1096
+ // $side-nav-font-size: em-calc(14);
1097
+ // $side-nav-font-weight: bold;
1098
+
1099
+ // We use these to control border styles
1100
+
1101
+ // $side-nav-divider-size: 1px;
1102
+ // $side-nav-divider-style: solid;
1103
+ // $side-nav-divider-color: darken(#fff, 10%);
1104
+
1105
+ //
1106
+ // Sub Nav Variables
1107
+ //
1108
+
1109
+ // We use these to control margin and padding
1110
+
1111
+ // $sub-nav-list-margin: em-calc(-4 0 18);
1112
+ // $sub-nav-list-padding-top: em-calc(4);
1113
+
1114
+ // We use this to control the definition
1115
+
1116
+ // $sub-nav-font-size: em-calc(14);
1117
+ // $sub-nav-font-color: #999;
1118
+ // $sub-nav-font-weight: normal;
1119
+ // $sub-nav-text-decoration: none;
1120
+ // $sub-nav-border-radius: 1000px;
1121
+
1122
+ // We use these to control the active item styles
1123
+
1124
+ // $sub-nav-active-font-weight: bold;
1125
+ // $sub-nav-active-bg: $primary-color;
1126
+ // $sub-nav-active-color: #fff;
1127
+ // $sub-nav-active-padding: em-calc(3 9);
1128
+ // $sub-nav-active-cursor: default;
1129
+
1130
+ // $sub-nav-item-divider: "" !default;
1131
+ // $sub-nav-item-divider-margin: emCalc(12) !default;
1132
+
1133
+ //
1134
+ // Switch Variables
1135
+ //
1136
+
1137
+ // Controlling border styles and background colors for the switch container
1138
+
1139
+ // $switch-border-color: darken(#fff, 20%);
1140
+ // $switch-border-style: solid;
1141
+ // $switch-border-width: 1px;
1142
+ // $switch-bg: #fff;
1143
+
1144
+ // We use these to control the switch heights for our default classes
1145
+
1146
+ // $switch-height-tny: 22px;
1147
+ // $switch-height-sml: 28px;
1148
+ // $switch-height-med: 36px;
1149
+ // $switch-height-lrg: 44px;
1150
+ // $switch-bottom-margin: em-calc(20);
1151
+
1152
+ // We use these to control default font sizes for our classes.
1153
+
1154
+ // $switch-font-size-tny: 11px;
1155
+ // $switch-font-size-sml: 12px;
1156
+ // $switch-font-size-med: 14px;
1157
+ // $switch-font-size-lrg: 17px;
1158
+ // $switch-label-side-padding: 6px;
1159
+
1160
+ // We use these to style the switch-paddle
1161
+
1162
+ // $switch-paddle-bg: #fff;
1163
+ // $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
1164
+ // $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
1165
+ // $switch-paddle-border-width: 1px;
1166
+ // $switch-paddle-border-style: solid;
1167
+ // $switch-paddle-transition-speed: .1s;
1168
+ // $switch-paddle-transition-ease: ease-out;
1169
+ // $switch-positive-color: lighten($success-color, 50%);
1170
+ // $switch-negative-color: #f5f5f5;
1171
+
1172
+ // Outline Style for tabbing through switches
1173
+
1174
+ // $switch-label-outline: 1px dotted #888;
1175
+
1176
+ //
1177
+ // Table Variables
1178
+ //
1179
+
1180
+ // These control the background color for the table and even rows
1181
+
1182
+ // $table-bg: #fff;
1183
+ // $table-even-row-bg: #f9f9f9;
1184
+
1185
+ // These control the table cell border style
1186
+
1187
+ // $table-border-style: solid;
1188
+ // $table-border-size: 1px;
1189
+ // $table-border-color: #ddd;
1190
+
1191
+ // These control the table head styles
1192
+
1193
+ // $table-head-bg: #f5f5f5;
1194
+ // $table-head-font-size: em-calc(14);
1195
+ // $table-head-font-color: #222;
1196
+ // $table-head-font-weight: bold;
1197
+ // $table-head-padding: em-calc(8 10 10);
1198
+
1199
+ // These control the row padding and font styles
1200
+
1201
+ // $table-row-padding: em-calc(9 10);
1202
+ // $table-row-font-size: em-calc(14);
1203
+ // $table-row-font-color: #222;
1204
+ // $table-line-height: em-calc(18);
1205
+
1206
+ // These are for controlling the display and margin of tables
1207
+
1208
+ // $table-display: table-cell;
1209
+ // $table-margin-bottom: em-calc(20);
1210
+
1211
+ //
1212
+ // Image Thumbnail Variables
1213
+ //
1214
+
1215
+ // We use these to control border styles
1216
+
1217
+ // $thumb-border-style: solid;
1218
+ // $thumb-border-width: 4px;
1219
+ // $thumb-border-color: #fff;
1220
+ // $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
1221
+ // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
1222
+
1223
+ // Radius and transition speed for thumbs
1224
+
1225
+ // $thumb-radius: $global-radius;
1226
+ // $thumb-transition-speed: 200ms;
1227
+
1228
+ //
1229
+ // Tooltip Variables
1230
+ //
1231
+
1232
+ // $has-tip-border-bottom: dotted 1px #ccc;
1233
+ // $has-tip-font-weight: bold;
1234
+ // $has-tip-font-color: #333;
1235
+ // $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
1236
+ // $has-tip-font-color-hover: $primary-color;
1237
+ // $has-tip-cursor-type: help;
1238
+
1239
+ // $tooltip-padding: em-calc(8);
1240
+ // $tooltip-bg: #000;
1241
+ // $tooltip-font-size: em-calc(15);
1242
+ // $tooltip-font-weight: bold;
1243
+ // $tooltip-font-color: #fff;
1244
+ // $tooltip-line-height: 1.3;
1245
+ // $tooltip-close-font-size: em-calc(10);
1246
+ // $tooltip-close-font-weight: normal;
1247
+ // $tooltip-close-font-color: #888;
1248
+ // $tooltip-font-size-sml: em-calc(14);
1249
+ // $tooltip-radius: $global-radius;
1250
+ // $tooltip-pip-size: 5px;
1251
+
1252
+ //
1253
+ // Top Bar Variables
1254
+ //
1255
+
1256
+ // Background color for the top bar
1257
+
1258
+ // $topbar-bg-color: #111;
1259
+ // $topbar-bg: $topbar-bg-color;
1260
+
1261
+ // Height and margin
1262
+
1263
+ // $topbar-height: 45px;
1264
+ // $topbar-margin-bottom: 0;
1265
+
1266
+ // Control Input height for top bar
1267
+
1268
+ // $topbar-input-height: 2.45em;
1269
+
1270
+ // Controlling the styles for the title in the top bar
1271
+
1272
+ // $topbar-title-weight: bold;
1273
+ // $topbar-title-font-size: em-calc(17);
1274
+
1275
+ // Style the top bar dropdown elements
1276
+
1277
+ // $topbar-dropdown-bg: #222;
1278
+ // $topbar-dropdown-link-color: #fff;
1279
+ // // $topbar-dropdown-link-bg: lighten($topbar-bg-color, 5%);
1280
+ // $topbar-dropdown-toggle-size: 5px;
1281
+ // $topbar-dropdown-toggle-color: #fff;
1282
+ // $topbar-dropdown-toggle-alpha: 0.5;
1283
+
1284
+ // Set the link colors and styles for top-level nav
1285
+
1286
+ // $topbar-link-color: #fff;
1287
+ // $topbar-link-color-hover: #fff;
1288
+ // $topbar-link-color-active: #fff;
1289
+ // $topbar-link-weight: bold;
1290
+ // $topbar-link-font-size: em-calc(13);
1291
+ // $topbar-link-hover-lightness: -30%; // Darken by 30%
1292
+ // $topbar-link-bg-hover: darken($topbar-bg-color, 3%);
1293
+ // $topbar-link-bg-active: darken($topbar-bg-color, 3%);
1294
+
1295
+ // $topbar-dropdown-label-color: #555;
1296
+ // $topbar-dropdown-label-text-transform: uppercase;
1297
+ // $topbar-dropdown-label-font-weight: bold;
1298
+ // $topbar-dropdown-label-font-size: em-calc(10);
1299
+ // $topbar-dropdown-label-bg: lighten($topbar-bg-color, 5%);
1300
+
1301
+ // Top menu icon styles
1302
+
1303
+ // $topbar-menu-link-transform: uppercase;
1304
+ // $topbar-menu-link-font-size: em-calc(13);
1305
+ // $topbar-menu-link-weight: bold;
1306
+ // $topbar-menu-link-color: #fff;
1307
+ // $topbar-menu-icon-color: #fff;
1308
+ // $topbar-menu-link-color-toggled: #888;
1309
+ // $topbar-menu-icon-color-toggled: #888;
1310
+
1311
+ // Transitions and breakpoint styles
1312
+
1313
+ // $topbar-transition-speed: 300ms;
1314
+ // $topbar-breakpoint: 940 !default; // Change to 9999px for always mobile layout
1315
+ // $topbar-media-query: "only screen and (min-width: #{$topbar-breakpoint})";
1316
+
1317
+ // Divider Styles
1318
+
1319
+ // $topbar-divider-border-bottom: solid 1px lighten($topbar-bg-color, 10%);
1320
+ // $topbar-divider-border-top: solid 1px darken($topbar-bg-color, 10%);
1321
+
1322
+ // Sticky Class
1323
+
1324
+ // $topbar-sticky-class: ".sticky";
1325
+ // $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
1326
+
1327
+ @import 'foundation';