schnitzelstyle 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -17,3 +17,4 @@ tmp
17
17
  .sass-cache/
18
18
  schnitzelstyle.sublime-project
19
19
  schnitzelstyle.sublime-workspace
20
+ .DS_Store
@@ -0,0 +1,19 @@
1
+ !!! 5
2
+ %html
3
+ %head
4
+ %title Schnitzelstyle!
5
+ %meta{ :"http-equiv" => "content-type", :content => "text/html; charset=UTF-8" }
6
+ %meta{ :name => "viewport", :content => "width=device-width, initial-scale=1.0" }
7
+ %link{ :href => "/schnitzelstyle.css", :media => "screen", :rel => "stylesheet", :type => "text/css" }
8
+
9
+ %body
10
+ .container
11
+ %header
12
+ .site-title Schnitzelstyle
13
+ It's great!
14
+
15
+ %section
16
+ %p Woohoo!
17
+
18
+ %footer
19
+ The site's footer.
@@ -1,4 +1,4 @@
1
- $container-width: 600px;
1
+ $container-width: 600px !default;
2
2
 
3
3
  $font-1: 15px "Helvetica Neue","Arial",helvetica,sans-serif !default;
4
4
  $font-2: 15px "Verdana",helvetica,sans-serif !default;
@@ -13,4 +13,7 @@
13
13
  .ten.columns { @include columns(10); }
14
14
  .eleven.columns { @include columns(11); }
15
15
  .twelve.columns { @include columns(12); }
16
+
17
+ .large-type { @include large-type; }
18
+ .small-type { @include small-type; }
16
19
  }
@@ -1,3 +1,8 @@
1
+ @mixin appear-on-hover($op-non-hover: 0.3, $op-hover: 1) {
2
+ opacity: $op-non-hover;
3
+ &:hover { opacity: $op-hover }
4
+ }
5
+
1
6
  @mixin floaty-title($fg, $bg) {
2
7
  display: inline-block;
3
8
  padding: 5px 40px 5px 10px;
@@ -63,4 +68,5 @@
63
68
  .button { @include button }
64
69
  .button.red { @include button(#c66) }
65
70
  .button.green { @include button(#6c6) }
71
+ .button.blue { @include button(#66c) }
66
72
  }
@@ -54,9 +54,10 @@
54
54
  }
55
55
 
56
56
  .hint {
57
+ margin-top: 3px;
57
58
  padding: 0px 5px;
58
59
  display: block;
59
- color: $color-extra;
60
+ color: $color-footer;
60
61
  @include small-type;
61
62
  }
62
63
  }
@@ -1,3 +1,3 @@
1
1
  module Schnitzelstyle
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
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.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-02-25 00:00:00.000000000 Z
12
+ date: 2012-03-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass
16
- requirement: &70305599731920 !ruby/object:Gem::Requirement
16
+ requirement: &70350446182080 !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: *70305599731920
24
+ version_requirements: *70350446182080
25
25
  description: A simple, light-weight CSS framework to kickstart your web app.
26
26
  email:
27
27
  - hendrik@mans.de
@@ -36,6 +36,7 @@ files:
36
36
  - README.md
37
37
  - Rakefile
38
38
  - config.ru
39
+ - examples/layout.haml
39
40
  - lib/assets/stylesheets/schnitzelstyle.scss
40
41
  - lib/assets/stylesheets/schnitzelstyle/_basics.scss
41
42
  - lib/assets/stylesheets/schnitzelstyle/_coderay.scss