roots-rails 0.0.1.alpha → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. data/.gitignore +0 -1
  2. data/lib/generators/roots/install_generator.rb +28 -12
  3. data/lib/generators/templates/layouts/_settings.styl +40 -0
  4. data/lib/generators/templates/layouts/application.css.styl +13 -0
  5. data/lib/generators/templates/layouts/layout.html.slim +26 -0
  6. data/lib/generators/templates/{scripts/pie.htc → pie.htc} +0 -0
  7. data/lib/roots/version.rb +1 -1
  8. data/readme.md +5 -13
  9. data/roots-rails.gemspec +2 -10
  10. metadata +13 -87
  11. data/Gemfile +0 -4
  12. data/lib/generators/roots/framework_generator.rb +0 -28
  13. data/lib/generators/templates/images/apple-touch-icon-114x114.png +0 -0
  14. data/lib/generators/templates/images/apple-touch-icon-72x72.png +0 -0
  15. data/lib/generators/templates/images/apple-touch-icon.png +0 -0
  16. data/lib/generators/templates/images/preview.png +0 -0
  17. data/lib/generators/templates/layouts/application.sass +0 -23
  18. data/lib/generators/templates/layouts/config.html.haml +0 -57
  19. data/lib/generators/templates/layouts/layout.html.haml +0 -26
  20. data/lib/generators/templates/sass/modules/_animation.sass +0 -454
  21. data/lib/generators/templates/sass/modules/_buttons.sass +0 -233
  22. data/lib/generators/templates/sass/modules/_code.sass +0 -41
  23. data/lib/generators/templates/sass/modules/_forms.sass +0 -209
  24. data/lib/generators/templates/sass/modules/_interaction.sass +0 -89
  25. data/lib/generators/templates/sass/modules/_reset.sass +0 -238
  26. data/lib/generators/templates/sass/modules/_tables.sass +0 -76
  27. data/lib/generators/templates/sass/modules/_typography.sass +0 -367
  28. data/lib/generators/templates/sass/modules/_ui.sass +0 -205
  29. data/lib/generators/templates/sass/modules/_utilities.sass +0 -372
  30. data/lib/generators/templates/sass/roots.sass +0 -54
  31. data/lib/generators/templates/scripts/selectivizr.js +0 -5
  32. data/vendor/assets/stylesheets/modules/_animation.sass +0 -454
  33. data/vendor/assets/stylesheets/modules/_buttons.sass +0 -233
  34. data/vendor/assets/stylesheets/modules/_code.sass +0 -41
  35. data/vendor/assets/stylesheets/modules/_fluid.sass +0 -160
  36. data/vendor/assets/stylesheets/modules/_forms.sass +0 -209
  37. data/vendor/assets/stylesheets/modules/_interaction.sass +0 -89
  38. data/vendor/assets/stylesheets/modules/_reset.sass +0 -238
  39. data/vendor/assets/stylesheets/modules/_tables.sass +0 -76
  40. data/vendor/assets/stylesheets/modules/_typography.sass +0 -367
  41. data/vendor/assets/stylesheets/modules/_ui.sass +0 -205
  42. data/vendor/assets/stylesheets/modules/_utilities.sass +0 -372
  43. data/vendor/assets/stylesheets/roots.sass +0 -57
@@ -1,57 +0,0 @@
1
- // -------------------------------------------------------
2
- // Global settings - adjust these to your heart's desire
3
- // -------------------------------------------------------
4
-
5
- // for roots rails, this should be adjustable through a config file or block when not explicitly loaded
6
-
7
- // font options (add your own!)
8
- $helvetica: "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Lucida Grande", sans-serif
9
-
10
- // default font stack
11
- $font-stack: $helvetica
12
- $font-size: 15
13
- $font-color: #555
14
-
15
- // colors
16
- $red: #B44326
17
- $orange: #F2A34F
18
- $yellow: #F8CA5C
19
- $green: #7FC028
20
- $light-blue: #52D7FE
21
- $blue: #00a6fc
22
- $purple: #8E48C2
23
- $white: #fff
24
- $black: #272727
25
-
26
- // default color
27
- $default: $orange
28
-
29
- // text hilight color
30
- $hilight-color: $blue
31
-
32
- // -------------------------------------------------------
33
- // Importing all the files we need
34
- // -------------------------------------------------------
35
-
36
- @import 'modules/reset'
37
- @import 'modules/interaction'
38
- @import 'modules/utilities'
39
- @import 'modules/typography'
40
- @import 'modules/code'
41
- @import 'modules/ui'
42
- @import 'modules/buttons'
43
- @import 'modules/forms'
44
- // @import 'modules/fluid'
45
- @import 'modules/tables'
46
-
47
- // -------------------------------------------------------
48
- // Framework Mixin (loads all default styles)
49
- // -------------------------------------------------------
50
-
51
- =framework
52
- +base
53
- +typography
54
- +forms
55
- +buttons
56
- +code-blocks
57
- +tables