oulu 0.9.11 → 0.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/_oulu-base.sass +9 -10
  3. data/app/assets/stylesheets/{options → modules}/amazlet/_amazlet.sass +0 -0
  4. data/app/assets/stylesheets/modules/buttons/_button-base.sass +67 -10
  5. data/app/assets/stylesheets/modules/buttons/_button-helper.sass +36 -12
  6. data/app/assets/stylesheets/modules/buttons/_buttons.sass +9 -7
  7. data/app/assets/stylesheets/modules/buttons/styles/_border.sass +29 -5
  8. data/app/assets/stylesheets/modules/buttons/styles/_flat-emboss.sass +36 -1
  9. data/app/assets/stylesheets/modules/buttons/styles/_flat-round.sass +31 -2
  10. data/app/assets/stylesheets/modules/buttons/styles/_material.sass +12 -6
  11. data/app/assets/stylesheets/modules/buttons/styles/_normal.sass +39 -7
  12. data/app/assets/stylesheets/modules/buttons/styles/_super-bold-border.sass +63 -0
  13. data/app/assets/stylesheets/{options → modules}/glitch/_glitch.sass +2 -2
  14. data/app/assets/stylesheets/modules/glitch/_glitch.sass~organize-modules +31 -0
  15. data/app/assets/stylesheets/modules/navs/_tabs-nav.sass +0 -8
  16. data/app/assets/stylesheets/modules/text-input/_text-inputs.sass +0 -0
  17. data/app/assets/stylesheets/{options → modules}/web-fonts/_cousine.sass +0 -0
  18. data/app/assets/stylesheets/{options → modules}/web-fonts/_droid-sans.sass +0 -0
  19. data/app/assets/stylesheets/{options → modules}/web-fonts/_font-awsome.sass +0 -0
  20. data/app/assets/stylesheets/{options → modules}/web-fonts/_icomoon.sass +0 -0
  21. data/app/assets/stylesheets/{options → modules}/web-fonts/_inconsolata.sass +0 -0
  22. data/app/assets/stylesheets/{options → modules}/web-fonts/_lato.sass +0 -0
  23. data/app/assets/stylesheets/{options → modules}/web-fonts/_merriweather-sans.sass +0 -0
  24. data/app/assets/stylesheets/{options → modules}/web-fonts/_montserrat.sass +0 -0
  25. data/app/assets/stylesheets/{options → modules}/web-fonts/_old-standard.sass +0 -0
  26. data/app/assets/stylesheets/{options → modules}/web-fonts/_open-sans.sass +0 -0
  27. data/app/assets/stylesheets/{options → modules}/web-fonts/_podkova.sass +0 -0
  28. data/app/assets/stylesheets/{options → modules}/web-fonts/_pt-sans.sass +0 -0
  29. data/app/assets/stylesheets/{options → modules}/web-fonts/_raleway.sass +0 -0
  30. data/app/assets/stylesheets/{options → modules}/web-fonts/_roboto-condensed.sass +0 -0
  31. data/app/assets/stylesheets/{options → modules}/web-fonts/_roboto-mono.sass +0 -0
  32. data/app/assets/stylesheets/{options → modules}/web-fonts/_roboto.sass +0 -0
  33. data/app/assets/stylesheets/{options → modules}/web-fonts/_satisfy.sass +0 -0
  34. data/app/assets/stylesheets/{options → modules}/web-fonts/_source-code-pro.sass +0 -0
  35. data/app/assets/stylesheets/{options → modules}/web-fonts/_source-sans-pro.sass +0 -0
  36. data/app/assets/stylesheets/{options → modules}/web-fonts/_special-elite.sass +0 -0
  37. data/app/assets/stylesheets/{options → modules}/web-fonts/_tauri.sass +0 -0
  38. data/app/assets/stylesheets/{options → modules}/web-fonts/_ubuntu-mono.sass +0 -0
  39. data/app/assets/stylesheets/{options → modules}/web-fonts/_ubuntu.sass +0 -0
  40. data/app/assets/stylesheets/{options → modules}/web-fonts/_varela-round.sass +0 -0
  41. data/app/assets/stylesheets/{options → modules}/web-fonts/_vt323.sass +0 -0
  42. data/app/assets/stylesheets/settings/functions/_animation.sass +4 -4
  43. data/app/assets/stylesheets/settings/functions/_background.sass +25 -18
  44. data/app/assets/stylesheets/settings/functions/_color.sass +12 -1
  45. data/app/assets/stylesheets/settings/functions/_timing.sass +28 -0
  46. data/app/assets/stylesheets/settings/initializers/_reboot.sass +8 -0
  47. data/app/assets/stylesheets/settings/initializers/_sanitize.sass +168 -106
  48. data/app/assets/stylesheets/settings/mixins/_animation.sass +32 -28
  49. data/app/assets/stylesheets/settings/mixins/_background.sass +34 -33
  50. data/app/assets/stylesheets/settings/mixins/_block.sass +17 -21
  51. data/app/assets/stylesheets/settings/mixins/_line.sass +7 -7
  52. data/app/assets/stylesheets/settings/mixins/_text.sass +9 -4
  53. data/app/assets/stylesheets/settings/variables/_default.sass +14 -44
  54. data/app/assets/stylesheets/settings/variables/_modules.sass +55 -0
  55. data/bower.json +1 -4
  56. data/lib/oulu/version.rb +1 -1
  57. data/oulu.gemspec +0 -2
  58. data/package.json +2 -5
  59. metadata +34 -57
@@ -1,33 +1,34 @@
1
- =bg-size($value)
2
- @if list($value)
3
- @if str-slice(nth($value, 1), 1, 1) == '/'
4
- $bg-size-value: str-slice(nth($value, 1), 2) nth($value, 2)
5
- +background-size($bg-size-value)
6
- @else
7
- +background-size($value)
8
- @else
9
- @if str-slice(nth($value, 1), 1, 1) == '/'
10
- $bg-size-value: str-slice(nth($value, 1), 2)
11
- +background-size($bg-size-value)
12
- @else
13
- +background-size($value)
14
-
15
- // どこでも background-color と background-image と background-position と background-repeat が書ける設定
16
- =background-basics($value)
17
- @if background_color($value)
18
- background-color: $value
19
- @else if background_image($value)
20
- background-image: image_url("#{$value}")
21
- @else if background_position($value)
22
- background-position: $value
23
- @else if background_repeat($value)
24
- background-repeat: $value
25
- @else if background_attachment($value)
26
- background-attachment: $value
27
- @else if background_size($value)
28
- +bg-size($value)
29
-
30
- // +bg(black 'image.png' (left center) no-repeat fixed (/ 20px 30px))
31
- =bg($value)
32
- @for $i from 1 through length($value)
33
- +background-basics(nth($value, $i))
1
+ =background($values...)
2
+ $background-values: ()
3
+ @each $value in $values
4
+ $background-value: ()
5
+ $background-color: ()
6
+ $background-image: ()
7
+ $background-gradient: ()
8
+ $background-position: ()
9
+ $background-repeat: ()
10
+ $background-attachment: ()
11
+ $background-size: ()
12
+ $background-clip: ()
13
+ @each $property in $value
14
+ @if background_color($property)
15
+ $background-color: $property
16
+ @else if background_image($property)
17
+ $background-image: $property
18
+ @else if background_gradient($property)
19
+ $background-gradient: $property
20
+ @else if background_position($property)
21
+ $background-position: $property
22
+ @else if background_repeat($property)
23
+ $background-repeat: $property
24
+ @else if background_attachment($property)
25
+ $background-attachment: $property
26
+ @else if background_size($property)
27
+ $background-size: background_size($property)
28
+ @else if background_clip($property)
29
+ $background-clip: background_clip($property)
30
+ @if background-size != () and $background-position == ()
31
+ $background-position: (left top)
32
+ $background-value: $background-color $background-image $background-gradient $background-position $background-size $background-repeat $background-attachment $background-clip
33
+ $background-values: append($background-values, $background-value, comma)
34
+ background: $background-values
@@ -14,17 +14,19 @@
14
14
  +fixed(left 50%, $block-z-index)
15
15
  margin-left: $block-width / 2 * -1
16
16
 
17
- =square-block($values)
18
- $square-block-size: optional_nth($values, 1)
19
- $square-block-height: optional_nth($values, 2)
20
- $square-block-line-height: optional_nth($values, 3)
21
- +size($square-block-size if($square-block-height, $square-block-height, $square-block-size))
22
- @if $square-block-line-height
23
- line-height: $square-block-line-height
24
- @else if $square-block-height
25
- line-height: $square-block-height
17
+ =size($value)
18
+ $width: nth($value, 1)
19
+ $height: $width
20
+ @if length($value) > 1
21
+ $height: nth($value, 2)
22
+ @if is-size($height)
23
+ height: $height
26
24
  @else
27
- line-height: $square-block-size
25
+ @warn "`#{$height}` is not a valid length for the `$height` parameter in the `size` mixin."
26
+ @if is-size($width)
27
+ width: $width
28
+ @else
29
+ @warn "`#{$width}` is not a valid length for the `$width` parameter in the `size` mixin."
28
30
 
29
31
  =overflow($values)
30
32
  $overflow-x: optional_nth($values, 1)
@@ -39,14 +41,8 @@
39
41
  display: inline-block
40
42
  vertical-align: $value
41
43
 
42
- =background-size($values)
43
- +prefixer(background-size, $values, webkit moz spec)
44
-
45
- =background-clip($value)
46
- +prefixer(background-clip, $value, webkit moz spec)
47
-
48
- =box-shadow($values...)
49
- box-shadow: $values
50
-
51
- =text-shadow($values...)
52
- text-shadow: $values
44
+ =clearfix
45
+ &::after
46
+ clear: both
47
+ content: ""
48
+ display: table
@@ -4,14 +4,14 @@
4
4
  $gatter-width: optional_nth($stripe, 2, 4px)
5
5
  $size: optional_nth($stripe, 3, 1px)
6
6
  @if length($stripe-color) == 1
7
- +background-image(linear-gradient(left, color-stops($stripe-color, $stripe-color (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent 100%)))
7
+ background-image: linear-gradient(to right, color-stops($stripe-color, $stripe-color (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent 100%))
8
8
  @else
9
9
  @if percent(nth($stripe-color, 2))
10
10
  $mix-stripe-color: darken(nth($stripe-color, 1), nth($stripe-color, 2))
11
- +background-image(linear-gradient(left, color-stops($mix-stripe-color, $mix-stripe-color (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent 100%)))
11
+ background-image: linear-gradient(to right, color-stops($mix-stripe-color, $mix-stripe-color (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent 100%))
12
12
  background-color: nth($stripe-color, 1)
13
13
  @else if color(nth($stripe-color, 2))
14
- +background-image(linear-gradient(left, color-stops(nth($stripe-color, 1), nth($stripe-color, 1) (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent 100%)))
14
+ background-image: linear-gradient(to right, color-stops(nth($stripe-color, 1), nth($stripe-color, 1) (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent (strip_unit($stripe-width)/(strip_unit($stripe-width) + strip_unit($gatter-width)))*100%, transparent 100%))
15
15
  background-color: nth($stripe-color, 2)
16
16
  +background-size(($stripe-width + $gatter-width) ($stripe-width + $gatter-width))
17
17
  height: $size
@@ -19,14 +19,14 @@
19
19
  // http://codepen.io/anon/pen/tGhLp を改造
20
20
  =striped-line($stripe-color: #000000, $size: 20px)
21
21
  @if length($stripe-color) == 1
22
- +background-image(linear-gradient(-45deg, $stripe-color 25%, transparent 25%, transparent 50%, $stripe-color 50%, $stripe-color 75%, transparent 75%, transparent))
22
+ background-image: linear-gradient(-45deg, $stripe-color 25%, transparent 25%, transparent 50%, $stripe-color 50%, $stripe-color 75%, transparent 75%, transparent)
23
23
  @else
24
24
  @if percent(nth($stripe-color, 2))
25
25
  $mix-stripe-color: darken(nth($stripe-color, 1), nth($stripe-color, 2))
26
- +background-image(linear-gradient(-45deg, $mix-stripe-color 25%, transparent 25%, transparent 50%, $mix-stripe-color 50%, $mix-stripe-color 75%, transparent 75%, transparent))
26
+ background-image: linear-gradient(-45deg, $mix-stripe-color 25%, transparent 25%, transparent 50%, $mix-stripe-color 50%, $mix-stripe-color 75%, transparent 75%, transparent)
27
27
  background-color: nth($stripe-color, 1)
28
28
  @else
29
- +background-image(linear-gradient(-45deg, nth($stripe-color, 1) 25%, transparent 25%, transparent 50%, nth($stripe-color, 1) 50%, nth($stripe-color, 1) 75%, transparent 75%, transparent))
29
+ background-image: linear-gradient(-45deg, nth($stripe-color, 1) 25%, transparent 25%, transparent 50%, nth($stripe-color, 1) 50%, nth($stripe-color, 1) 75%, transparent 75%, transparent)
30
30
  background-color: nth($stripe-color, 2)
31
- +background-size($size $size)
31
+ background-size: $size $size
32
32
  height: $size
@@ -6,8 +6,6 @@
6
6
  white-space: if(white_space($value), $value, null)
7
7
  display: if(display($value), $value, null)
8
8
  text-decoration: if(text_decoration($value), $value, null)
9
- @if unit_number($value)
10
- +top($value, null)
11
9
 
12
10
  // +text-block($font-size $line-height $margin-bottom, $font-weight $text-align $color $top)
13
11
  =text-block($value1: null, $value2: null)
@@ -17,6 +15,13 @@
17
15
  @if ($value2)
18
16
  @for $i from 1 through length($value2)
19
17
  +text-block-options(nth($value2, $i))
18
+ @if unit_number(nth($value2, $i))
19
+ @if index($value2, center)
20
+ letter-spacing: nth($value2, $i)
21
+ text-indent: nth($value2, $i)
22
+ @else
23
+ letter-spacing: nth($value2, $i)
24
+
20
25
 
21
26
  =letter-spacing-center($space-width: null)
22
27
  letter-spacing: $space-width
@@ -46,5 +51,5 @@
46
51
 
47
52
  =small-font($font-size)
48
53
  // 9px以下のfont-sizeを使う設定(IE8不可)
49
- +transform(scale3d(strip_unit($font-size / 10), strip_unit($font-size/ 10), 1))
50
- +transform-origin(0 0)
54
+ transform: scale3d(strip_unit($font-size / 10), strip_unit($font-size/ 10), 1)
55
+ transform-origin: 0 0
@@ -1,9 +1,3 @@
1
- /////////////////
2
- // constant
3
- ////////////////
4
-
5
- $pi: 3.14159265359
6
-
7
1
  /////////////////
8
2
  // positions
9
3
  ////////////////
@@ -20,14 +14,6 @@ $container-class-name: container !default
20
14
  $container-max-width: 1100px !default
21
15
  $container-horizontal-padding: 16px !default
22
16
 
23
- /////////////////
24
- // text-color
25
- ////////////////
26
-
27
- $bright-text-color: white !default
28
- $dark-text-color: black !default
29
- $luma-threshold: 100 / $pi !default
30
-
31
17
  /////////////////
32
18
  // grids
33
19
  ////////////////
@@ -101,7 +87,7 @@ $container-lg: $container-large-desktop !default
101
87
 
102
88
  $fw: 400 !default
103
89
 
104
- $basic-sans-serif: "Lucida Grande", "Lucida Sans Unicode", Roboto, "Droid Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "MS Pゴシック", Helvetica, Arial, Verdana, sans-serif !default
90
+ $basic-sans-serif: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, sans-serif !default
105
91
  $basic-bold-sans-serif: "ヒラギノ角ゴ StdN", "Hiragino Kaku Gothic StdN", "メイリオ", Meiryo, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "MS Pゴシック", Helvetica, Arial, Verdana, sans-serif, "MS Pゴシック", Helvetica, Arial, Verdana, sans-serif !default
106
92
  $basic-serif: "Times New Roman", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HGS明朝E", "游明朝", YuMincho,'MS P明朝','MS PMincho', serif !default
107
93
  $basic-mono: Osaka-mono, "MS Gothic", monospace !default
@@ -109,35 +95,29 @@ $basic-maru: "Varela Round", "Lucida Grande", "Lucida Sans Unicode", Roboto, "Dr
109
95
  $basic-fonts: $basic-sans-serif !default
110
96
 
111
97
  /////////////////
112
- // UI colors
98
+ // text colors
113
99
  ////////////////
114
100
 
115
- $default: #ffffff !default
116
- $primary: #337AB7 !default
117
- $success: #5CB85C !default
118
- $info: #5BC0DE !default
119
- $warning: #F0AD4E !default
120
- $danger: #D9534F !default
101
+ $default-text: #434a54 !default
102
+ $reversal-text: white !default
103
+ $bright-text-color: $reversal-text !default
104
+ $dark-text-color: $default-text !default
121
105
 
122
106
  /////////////////
123
- // text colors
107
+ // luma contrast color
124
108
  ////////////////
125
109
 
126
- $default-text: black !default
127
- $reversal-text: white !default
110
+ $luma-contrast-bright-color: $default-text !default
111
+ $luma-contrast-dark-color: $reversal-text !default
128
112
 
129
113
  /////////////////
130
114
  // SNS colors
131
115
  ////////////////
132
116
 
133
- $twitter: #55acee
134
- $facebook: #3b5998
135
- $hatena: #008FDE
136
- $pocket: #f23c53
137
-
138
- // luma contrast color
139
- $luma-contrast-bright-color: $default-text !global
140
- $luma-contrast-dark-color: $reversal-text !global
117
+ $twitter: #55acee !default
118
+ $facebook: #3b5998 !default
119
+ $hatena: #008FDE !default
120
+ $pocket: #f23c53 !default
141
121
 
142
122
  /////////////////
143
123
  // sanitize.css
@@ -145,7 +125,7 @@ $luma-contrast-dark-color: $reversal-text !global
145
125
 
146
126
  $root-background-color: #FFFFFF !default
147
127
  $root-box-sizing: border-box !default
148
- $root-color: #000000 !default
128
+ $root-color: $default-text !default
149
129
  $root-cursor: default !default
150
130
  $root-font-family: $basic-sans-serif !default
151
131
  $root-font-size: 100% !default
@@ -166,13 +146,3 @@ $small-font-size: 75% !default
166
146
  $table-border-collapse: collapse !default
167
147
  $table-border-spacing: 0 !default
168
148
  $textarea-resize: vertical !default
169
-
170
- /////////////////
171
- // buttons
172
- ////////////////
173
-
174
- $xs-button-font-size: 12px !default
175
- $sm-button-font-size: 14px !default
176
- $md-button-font-size: 16px !default
177
- $lg-button-font-size: 18px !default
178
- $xl-button-font-size: 20px !default
@@ -0,0 +1,55 @@
1
+ /////////////////
2
+ // brand colors
3
+ ////////////////
4
+
5
+ $base-color: white !default
6
+ $main-color: #4FC1E9 !default
7
+ $sub-color: #FFCE54 !default
8
+ $accent-color: #FC6E51 !default
9
+
10
+ /////////////////
11
+ // UI colors
12
+ ////////////////
13
+
14
+ $secondary: #ffffff !default
15
+ $primary: #4fc1e9 !default
16
+ $success: #8cc152 !default
17
+ $info: #37bc9b !default
18
+ $warning: #f6bb42 !default
19
+ $danger: #da4453 !default
20
+
21
+ $primary-text: luma_add_contrast($base-color, $primary) !default
22
+ $info-text: luma_add_contrast($base-color, $info) !default
23
+ $success-text: luma_add_contrast($base-color, $success) !default
24
+ $warning-text: luma_add_contrast($base-color, $warning) !default
25
+ $danger-text: luma_add_contrast($base-color, $danger) !default
26
+ $faint-text: gray !default
27
+
28
+ /////////////////
29
+ // buttons
30
+ ////////////////
31
+
32
+ $xs-button-font-size: 12px !default
33
+ $sm-button-font-size: 14px !default
34
+ $md-button-font-size: 16px !default
35
+ $lg-button-font-size: 18px !default
36
+ $xl-button-font-size: 20px !default
37
+
38
+ $button-sizes: xs, sm, md, lg, xl !default
39
+ $button-color-names: secondary, primary, success, info, warning, danger !default
40
+ $button-styles: normal, border, bold-border, flat-emboss, material, flat-round, super-bold-border !default
41
+
42
+ $checked: shade($main-color, 30%)
43
+ $checked-icon: $sub-color
44
+
45
+ /////////////////
46
+ // tab navs
47
+ ////////////////
48
+
49
+ $tabs-nav-border-color: black !default
50
+ $tabs-nav-background-color: white !default
51
+ $tabs-nav-border-width: 2px !default
52
+ $tabs-nav-font-size: 16px !default
53
+ $tabs-nav-item-gutter: 8px !default
54
+ $tabs-nav-font-color: black !default
55
+ $tabs-nav-current-font-color: red !default
data/bower.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oulu",
3
- "version": "0.9.11",
3
+ "version": "0.10.1",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,9 +16,6 @@
16
16
  "Rakefile",
17
17
  "Gemfile"
18
18
  ],
19
- "devDependencies": {
20
- "bourbon": "~4.2.1"
21
- },
22
19
  "authors": [
23
20
  "machida"
24
21
  ],
data/lib/oulu/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Oulu
2
- VERSION = "0.9.11"
2
+ VERSION = "0.10.1"
3
3
  end
data/oulu.gemspec CHANGED
@@ -20,6 +20,4 @@ Gem::Specification.new do |spec|
20
20
 
21
21
  spec.add_runtime_dependency("thor", "~> 0.19")
22
22
  spec.add_runtime_dependency("rake")
23
- spec.add_runtime_dependency("sass", "~> 3.4.5")
24
- spec.add_runtime_dependency("bourbon")
25
23
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oulu",
3
- "version": "0.9.11",
3
+ "version": "0.10.1",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -13,8 +13,5 @@
13
13
  "contributors": [
14
14
  "machida"
15
15
  ],
16
- "license": "MIT",
17
- "devDependencies": {
18
- "bourbon": "~4.2.1"
19
- }
16
+ "license": "MIT"
20
17
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oulu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.11
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - machida
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-08 00:00:00.000000000 Z
11
+ date: 2016-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -38,34 +38,6 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- - !ruby/object:Gem::Dependency
42
- name: sass
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: 3.4.5
48
- type: :runtime
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: 3.4.5
55
- - !ruby/object:Gem::Dependency
56
- name: bourbon
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
- type: :runtime
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
41
  description: This gem provides assets files for Middleman Project.
70
42
  email:
71
43
  - machidanohimitsu@gmail.com
@@ -85,6 +57,7 @@ files:
85
57
  - app/assets/stylesheets/helpers/_margin-padding.sass
86
58
  - app/assets/stylesheets/helpers/_position.sass
87
59
  - app/assets/stylesheets/helpers/_typoglaphy.sass
60
+ - app/assets/stylesheets/modules/amazlet/_amazlet.sass
88
61
  - app/assets/stylesheets/modules/buttons/_button-base.sass
89
62
  - app/assets/stylesheets/modules/buttons/_button-helper.sass
90
63
  - app/assets/stylesheets/modules/buttons/_buttons.sass
@@ -93,34 +66,36 @@ files:
93
66
  - app/assets/stylesheets/modules/buttons/styles/_flat-round.sass
94
67
  - app/assets/stylesheets/modules/buttons/styles/_material.sass
95
68
  - app/assets/stylesheets/modules/buttons/styles/_normal.sass
69
+ - app/assets/stylesheets/modules/buttons/styles/_super-bold-border.sass
70
+ - app/assets/stylesheets/modules/glitch/_glitch.sass
71
+ - app/assets/stylesheets/modules/glitch/_glitch.sass~organize-modules
96
72
  - app/assets/stylesheets/modules/navs/_tabs-nav.sass
97
- - app/assets/stylesheets/options/amazlet/_amazlet.sass
98
- - app/assets/stylesheets/options/glitch/_glitch.sass
99
- - app/assets/stylesheets/options/web-fonts/_cousine.sass
100
- - app/assets/stylesheets/options/web-fonts/_droid-sans.sass
101
- - app/assets/stylesheets/options/web-fonts/_font-awsome.sass
102
- - app/assets/stylesheets/options/web-fonts/_icomoon.sass
103
- - app/assets/stylesheets/options/web-fonts/_inconsolata.sass
104
- - app/assets/stylesheets/options/web-fonts/_lato.sass
105
- - app/assets/stylesheets/options/web-fonts/_merriweather-sans.sass
106
- - app/assets/stylesheets/options/web-fonts/_montserrat.sass
107
- - app/assets/stylesheets/options/web-fonts/_old-standard.sass
108
- - app/assets/stylesheets/options/web-fonts/_open-sans.sass
109
- - app/assets/stylesheets/options/web-fonts/_podkova.sass
110
- - app/assets/stylesheets/options/web-fonts/_pt-sans.sass
111
- - app/assets/stylesheets/options/web-fonts/_raleway.sass
112
- - app/assets/stylesheets/options/web-fonts/_roboto-condensed.sass
113
- - app/assets/stylesheets/options/web-fonts/_roboto-mono.sass
114
- - app/assets/stylesheets/options/web-fonts/_roboto.sass
115
- - app/assets/stylesheets/options/web-fonts/_satisfy.sass
116
- - app/assets/stylesheets/options/web-fonts/_source-code-pro.sass
117
- - app/assets/stylesheets/options/web-fonts/_source-sans-pro.sass
118
- - app/assets/stylesheets/options/web-fonts/_special-elite.sass
119
- - app/assets/stylesheets/options/web-fonts/_tauri.sass
120
- - app/assets/stylesheets/options/web-fonts/_ubuntu-mono.sass
121
- - app/assets/stylesheets/options/web-fonts/_ubuntu.sass
122
- - app/assets/stylesheets/options/web-fonts/_varela-round.sass
123
- - app/assets/stylesheets/options/web-fonts/_vt323.sass
73
+ - app/assets/stylesheets/modules/text-input/_text-inputs.sass
74
+ - app/assets/stylesheets/modules/web-fonts/_cousine.sass
75
+ - app/assets/stylesheets/modules/web-fonts/_droid-sans.sass
76
+ - app/assets/stylesheets/modules/web-fonts/_font-awsome.sass
77
+ - app/assets/stylesheets/modules/web-fonts/_icomoon.sass
78
+ - app/assets/stylesheets/modules/web-fonts/_inconsolata.sass
79
+ - app/assets/stylesheets/modules/web-fonts/_lato.sass
80
+ - app/assets/stylesheets/modules/web-fonts/_merriweather-sans.sass
81
+ - app/assets/stylesheets/modules/web-fonts/_montserrat.sass
82
+ - app/assets/stylesheets/modules/web-fonts/_old-standard.sass
83
+ - app/assets/stylesheets/modules/web-fonts/_open-sans.sass
84
+ - app/assets/stylesheets/modules/web-fonts/_podkova.sass
85
+ - app/assets/stylesheets/modules/web-fonts/_pt-sans.sass
86
+ - app/assets/stylesheets/modules/web-fonts/_raleway.sass
87
+ - app/assets/stylesheets/modules/web-fonts/_roboto-condensed.sass
88
+ - app/assets/stylesheets/modules/web-fonts/_roboto-mono.sass
89
+ - app/assets/stylesheets/modules/web-fonts/_roboto.sass
90
+ - app/assets/stylesheets/modules/web-fonts/_satisfy.sass
91
+ - app/assets/stylesheets/modules/web-fonts/_source-code-pro.sass
92
+ - app/assets/stylesheets/modules/web-fonts/_source-sans-pro.sass
93
+ - app/assets/stylesheets/modules/web-fonts/_special-elite.sass
94
+ - app/assets/stylesheets/modules/web-fonts/_tauri.sass
95
+ - app/assets/stylesheets/modules/web-fonts/_ubuntu-mono.sass
96
+ - app/assets/stylesheets/modules/web-fonts/_ubuntu.sass
97
+ - app/assets/stylesheets/modules/web-fonts/_varela-round.sass
98
+ - app/assets/stylesheets/modules/web-fonts/_vt323.sass
124
99
  - app/assets/stylesheets/settings/functions/_animation.sass
125
100
  - app/assets/stylesheets/settings/functions/_background.sass
126
101
  - app/assets/stylesheets/settings/functions/_bool.sass
@@ -139,6 +114,7 @@ files:
139
114
  - app/assets/stylesheets/settings/functions/_reverse.sass
140
115
  - app/assets/stylesheets/settings/functions/_string.sass
141
116
  - app/assets/stylesheets/settings/functions/_text.sass
117
+ - app/assets/stylesheets/settings/functions/_timing.sass
142
118
  - app/assets/stylesheets/settings/initializers/_reboot.sass
143
119
  - app/assets/stylesheets/settings/initializers/_sanitize.sass
144
120
  - app/assets/stylesheets/settings/mixins/_animation.sass
@@ -167,6 +143,7 @@ files:
167
143
  - app/assets/stylesheets/settings/mixins/grid/_grid-framework.scss
168
144
  - app/assets/stylesheets/settings/mixins/grid/_grid.scss
169
145
  - app/assets/stylesheets/settings/variables/_default.sass
146
+ - app/assets/stylesheets/settings/variables/_modules.sass
170
147
  - bower.json
171
148
  - index.js
172
149
  - lib/oulu.rb