compass-inuit 4.1.0 → 4.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. data/README.md +71 -0
  2. data/lib/compass-inuit.rb +3 -0
  3. data/stylesheets/_compass-inuit.scss +138 -0
  4. data/stylesheets/partials/_base.scss +14 -0
  5. data/stylesheets/partials/_generic.scss +13 -0
  6. data/stylesheets/partials/_objects.scss +20 -0
  7. data/stylesheets/partials/base/_code.scss +61 -0
  8. data/stylesheets/partials/base/_forms.scss +141 -0
  9. data/stylesheets/partials/base/_headings.scss +58 -0
  10. data/stylesheets/partials/base/_images.scss +10 -0
  11. data/stylesheets/partials/base/_links.scss +32 -0
  12. data/stylesheets/partials/base/_lists.scss +10 -0
  13. data/stylesheets/partials/base/_main.scss +7 -0
  14. data/stylesheets/partials/base/_paragraphs.scss +11 -0
  15. data/stylesheets/partials/base/_quotes.scss +45 -0
  16. data/stylesheets/partials/base/_smallprint.scss +21 -0
  17. data/stylesheets/partials/base/_tables.scss +150 -0
  18. data/stylesheets/partials/generic/_brand.scss +18 -0
  19. data/stylesheets/partials/generic/_clearfix.scss +19 -0
  20. data/stylesheets/partials/generic/_helper.scss +69 -0
  21. data/stylesheets/partials/generic/_mixins.scss +31 -0
  22. data/stylesheets/partials/generic/_reset.scss +75 -0
  23. data/stylesheets/partials/generic/_shared.scss +50 -0
  24. data/stylesheets/partials/objects/_block-list.scss +36 -0
  25. data/stylesheets/partials/objects/_buttons.scss +41 -0
  26. data/stylesheets/partials/objects/_columns.scss +22 -0
  27. data/stylesheets/partials/objects/_complex-link.scss +28 -0
  28. data/stylesheets/partials/objects/_flexbox.scss +39 -0
  29. data/stylesheets/partials/objects/_flyout.scss +57 -0
  30. data/stylesheets/partials/objects/_grids.scss +154 -0
  31. data/stylesheets/partials/objects/_icon-text.scss +36 -0
  32. data/stylesheets/partials/objects/_island.scss +33 -0
  33. data/stylesheets/partials/objects/_lozenges.scss +35 -0
  34. data/stylesheets/partials/objects/_matrix.scss +90 -0
  35. data/stylesheets/partials/objects/_media.scss +55 -0
  36. data/stylesheets/partials/objects/_nav.scss +62 -0
  37. data/stylesheets/partials/objects/_pagination.scss +39 -0
  38. data/stylesheets/partials/objects/_split.scss +35 -0
  39. data/stylesheets/partials/objects/_sprite.scss +62 -0
  40. data/stylesheets/partials/objects/_this-or-this.scss +33 -0
  41. data/templates/project/_vars.scss +38 -0
  42. data/templates/project/manifest.rb +3 -0
  43. data/templates/project/your-project.scss +16 -0
  44. metadata +50 -9
@@ -0,0 +1,33 @@
1
+ /*------------------------------------*\
2
+ $THIS-OR-THIS
3
+ \*------------------------------------*/
4
+ /**
5
+ * Simple options object to provide multiple choices, e.g.:
6
+ *
7
+ <h1 class=this-or-this>
8
+ <a href=# class="this-or-this__this two-fifths">
9
+ Free
10
+ </a>
11
+ <span class="this-or-this__or one-fifth">
12
+ or
13
+ </span>
14
+ <a href=# class="this-or-this__this two-fifths">
15
+ Pro
16
+ </a>
17
+ </h1>
18
+ *
19
+ * The `.this` and `.or` objects can be sized using the grid-system classes.
20
+ *
21
+ * Demo: jsfiddle.net/inuitcss/R3sks
22
+ *
23
+ */
24
+ .this-or-this{
25
+ display:table;
26
+ width:100%;
27
+ text-align:center;
28
+ }
29
+ .this-or-this__this,
30
+ .this-or-this__or{
31
+ display:table-cell;
32
+ vertical-align:middle;
33
+ }
@@ -0,0 +1,38 @@
1
+ /*------------------------------------*\
2
+ $VARS
3
+ \*------------------------------------*/
4
+ /**
5
+ * Set up project-specific variables here which are then used throughout your
6
+ * build. These variables are automatically picked up by inuit.css so you should
7
+ * never need to modify any framework code.
8
+ */
9
+
10
+ // Base stuff
11
+ $base-font-size: 16 !default;
12
+ $base-line-height: 24 !default;
13
+
14
+ // Assign our `$base-line-height` to a new spacing var for more transparency.
15
+ $base-spacing-unit: $base-line-height !default;
16
+ $half-spacing-unit: $base-spacing-unit / 2 !default;
17
+
18
+ // Font-sizes (in pixels). Refer to relevant sections for their implementations.
19
+ $giga-size: 96 !default;
20
+ $mega-size: 72 !default;
21
+ $kilo-size: 48 !default;
22
+
23
+ $h1-size: 36 !default;
24
+ $h2-size: 30 !default;
25
+ $h3-size: 24 !default;
26
+ $h4-size: 20 !default;
27
+ $h5-size: 16 !default;
28
+ $h6-size: 14 !default;
29
+
30
+ $milli-size: 12 !default;
31
+ $micro-size: 10 !default;
32
+
33
+ // Brand stuff
34
+ $brand-color: #4a8ec2 !default;
35
+ $brand-face: "Helvetica Neue", sans-serif !default;
36
+
37
+ // Supply a full code font-stack to combat this: jsfiddle.net/csswizardry/uD6UW
38
+ $code-face: Inconsolata, Monaco, Consolas, "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !default;
@@ -0,0 +1,3 @@
1
+ # Make sure you list all the project template files here in the manifest.
2
+ stylesheet '_vars.scss'
3
+ stylesheet 'your-project.scss', :media => 'screen, projection'
@@ -0,0 +1,16 @@
1
+ @charset "UTF-8";
2
+ /*------------------------------------*\
3
+ YOUR-PROJECT.CSS
4
+ \*------------------------------------*/
5
+ /**
6
+ *
7
+ * compass watch
8
+ *
9
+ * Here we set up some variables, include the inuit.css framework, then add our
10
+ * project-specific components afterwards.
11
+ */
12
+ // Setup
13
+ @import "vars";
14
+ @import "compass-inuit";
15
+
16
+ // She’s all yours, cap’n... Begin importing your stuff here.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass-inuit
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.0
4
+ version: 4.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-07 00:00:00.000000000 Z
12
+ date: 2012-11-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass
@@ -34,7 +34,7 @@ dependencies:
34
34
  requirements:
35
35
  - - ! '>='
36
36
  - !ruby/object:Gem::Version
37
- version: '0.12'
37
+ version: 0.12.2
38
38
  type: :runtime
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
@@ -42,22 +42,63 @@ dependencies:
42
42
  requirements:
43
43
  - - ! '>='
44
44
  - !ruby/object:Gem::Version
45
- version: '0.12'
46
- description: inuit.css for compass—cooler than a polar bear’s toenails
45
+ version: 0.12.2
46
+ description: inuit.css for compass—cooler than a polar bear’s toenails.
47
47
  email:
48
- - stephen@swy.me
48
+ - stephencway@me.com
49
49
  executables: []
50
50
  extensions: []
51
51
  extra_rdoc_files: []
52
- files: []
52
+ files:
53
+ - README.md
54
+ - lib/compass-inuit.rb
55
+ - stylesheets/_compass-inuit.scss
56
+ - stylesheets/partials/_base.scss
57
+ - stylesheets/partials/_generic.scss
58
+ - stylesheets/partials/_objects.scss
59
+ - stylesheets/partials/base/_code.scss
60
+ - stylesheets/partials/base/_forms.scss
61
+ - stylesheets/partials/base/_headings.scss
62
+ - stylesheets/partials/base/_images.scss
63
+ - stylesheets/partials/base/_links.scss
64
+ - stylesheets/partials/base/_lists.scss
65
+ - stylesheets/partials/base/_main.scss
66
+ - stylesheets/partials/base/_paragraphs.scss
67
+ - stylesheets/partials/base/_quotes.scss
68
+ - stylesheets/partials/base/_smallprint.scss
69
+ - stylesheets/partials/base/_tables.scss
70
+ - stylesheets/partials/generic/_brand.scss
71
+ - stylesheets/partials/generic/_clearfix.scss
72
+ - stylesheets/partials/generic/_helper.scss
73
+ - stylesheets/partials/generic/_mixins.scss
74
+ - stylesheets/partials/generic/_reset.scss
75
+ - stylesheets/partials/generic/_shared.scss
76
+ - stylesheets/partials/objects/_block-list.scss
77
+ - stylesheets/partials/objects/_buttons.scss
78
+ - stylesheets/partials/objects/_columns.scss
79
+ - stylesheets/partials/objects/_complex-link.scss
80
+ - stylesheets/partials/objects/_flexbox.scss
81
+ - stylesheets/partials/objects/_flyout.scss
82
+ - stylesheets/partials/objects/_grids.scss
83
+ - stylesheets/partials/objects/_icon-text.scss
84
+ - stylesheets/partials/objects/_island.scss
85
+ - stylesheets/partials/objects/_lozenges.scss
86
+ - stylesheets/partials/objects/_matrix.scss
87
+ - stylesheets/partials/objects/_media.scss
88
+ - stylesheets/partials/objects/_nav.scss
89
+ - stylesheets/partials/objects/_pagination.scss
90
+ - stylesheets/partials/objects/_split.scss
91
+ - stylesheets/partials/objects/_sprite.scss
92
+ - stylesheets/partials/objects/_this-or-this.scss
93
+ - templates/project/_vars.scss
94
+ - templates/project/manifest.rb
95
+ - templates/project/your-project.scss
53
96
  homepage: http://github.com/stephenway/compass-intuit
54
97
  licenses: []
55
98
  post_install_message:
56
99
  rdoc_options: []
57
100
  require_paths:
58
101
  - lib
59
- - stylesheets
60
- - templates
61
102
  required_ruby_version: !ruby/object:Gem::Requirement
62
103
  none: false
63
104
  requirements: