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.
- data/.gitignore +0 -1
- data/lib/generators/roots/install_generator.rb +28 -12
- data/lib/generators/templates/layouts/_settings.styl +40 -0
- data/lib/generators/templates/layouts/application.css.styl +13 -0
- data/lib/generators/templates/layouts/layout.html.slim +26 -0
- data/lib/generators/templates/{scripts/pie.htc → pie.htc} +0 -0
- data/lib/roots/version.rb +1 -1
- data/readme.md +5 -13
- data/roots-rails.gemspec +2 -10
- metadata +13 -87
- data/Gemfile +0 -4
- data/lib/generators/roots/framework_generator.rb +0 -28
- data/lib/generators/templates/images/apple-touch-icon-114x114.png +0 -0
- data/lib/generators/templates/images/apple-touch-icon-72x72.png +0 -0
- data/lib/generators/templates/images/apple-touch-icon.png +0 -0
- data/lib/generators/templates/images/preview.png +0 -0
- data/lib/generators/templates/layouts/application.sass +0 -23
- data/lib/generators/templates/layouts/config.html.haml +0 -57
- data/lib/generators/templates/layouts/layout.html.haml +0 -26
- data/lib/generators/templates/sass/modules/_animation.sass +0 -454
- data/lib/generators/templates/sass/modules/_buttons.sass +0 -233
- data/lib/generators/templates/sass/modules/_code.sass +0 -41
- data/lib/generators/templates/sass/modules/_forms.sass +0 -209
- data/lib/generators/templates/sass/modules/_interaction.sass +0 -89
- data/lib/generators/templates/sass/modules/_reset.sass +0 -238
- data/lib/generators/templates/sass/modules/_tables.sass +0 -76
- data/lib/generators/templates/sass/modules/_typography.sass +0 -367
- data/lib/generators/templates/sass/modules/_ui.sass +0 -205
- data/lib/generators/templates/sass/modules/_utilities.sass +0 -372
- data/lib/generators/templates/sass/roots.sass +0 -54
- data/lib/generators/templates/scripts/selectivizr.js +0 -5
- data/vendor/assets/stylesheets/modules/_animation.sass +0 -454
- data/vendor/assets/stylesheets/modules/_buttons.sass +0 -233
- data/vendor/assets/stylesheets/modules/_code.sass +0 -41
- data/vendor/assets/stylesheets/modules/_fluid.sass +0 -160
- data/vendor/assets/stylesheets/modules/_forms.sass +0 -209
- data/vendor/assets/stylesheets/modules/_interaction.sass +0 -89
- data/vendor/assets/stylesheets/modules/_reset.sass +0 -238
- data/vendor/assets/stylesheets/modules/_tables.sass +0 -76
- data/vendor/assets/stylesheets/modules/_typography.sass +0 -367
- data/vendor/assets/stylesheets/modules/_ui.sass +0 -205
- data/vendor/assets/stylesheets/modules/_utilities.sass +0 -372
- 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
|