schnitzelstyle 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -17,10 +17,8 @@
17
17
  * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
18
18
 
19
19
  body {
20
- background-color: $color-background;
21
20
  color: $color-text;
22
21
  font: $font-default;
23
- padding-bottom: 20px;
24
22
  }
25
23
 
26
24
  // set body class to 'loading' to switch the curser to a 'loading' cursor.
@@ -23,7 +23,7 @@ $color-extra: #4ea4ec !default;
23
23
  $color-footer: rgba($color-text, 0.5) !default;
24
24
  $color-title: $color-extra !default;
25
25
 
26
- $color-heading-background: rgba($color-text, 0.18);
26
+ $color-heading-background: mix($color-text, $color-background, 20%); //rgba($color-text, 0.18) !default;
27
27
  $color-heading-text: $color-text !default;
28
28
 
29
29
  $color-link: $color-text !default;
@@ -31,3 +31,5 @@ $color-link-underline: complement($color-extra) !default;
31
31
  $color-link-hover: complement($color-extra) !default;
32
32
 
33
33
  $color-error: #d33 !default;
34
+
35
+ $color-body-background: darken($color-background, 10%) !default;
@@ -4,7 +4,7 @@
4
4
 
5
5
  color: $fg;
6
6
  background-color: $bg;
7
- border-left: 5px solid darken($bg, 10%);
7
+ border-left: 5px solid rgba($fg, 0.2);
8
8
 
9
9
  a {
10
10
  color: $fg;
@@ -1,6 +1,8 @@
1
1
  @mixin container {
2
- width: 600px;
2
+ width: $container-width;
3
3
  margin: 0 auto;
4
+ background-color: $color-background;
5
+ padding: 2em 0;
4
6
  }
5
7
 
6
8
  @mixin row {
@@ -1,3 +1,3 @@
1
1
  module Schnitzelstyle
2
- VERSION = "0.0.9"
2
+ VERSION = "0.0.10"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: schnitzelstyle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-02-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass
16
- requirement: &70341453518800 !ruby/object:Gem::Requirement
16
+ requirement: &70113026022980 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70341453518800
24
+ version_requirements: *70113026022980
25
25
  description: A simple, light-weight CSS framework to kickstart your web app.
26
26
  email:
27
27
  - hendrik@mans.de