compass-inuit 4.1.0 → 4.1.1
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/README.md +71 -0
- data/lib/compass-inuit.rb +3 -0
- data/stylesheets/_compass-inuit.scss +138 -0
- data/stylesheets/partials/_base.scss +14 -0
- data/stylesheets/partials/_generic.scss +13 -0
- data/stylesheets/partials/_objects.scss +20 -0
- data/stylesheets/partials/base/_code.scss +61 -0
- data/stylesheets/partials/base/_forms.scss +141 -0
- data/stylesheets/partials/base/_headings.scss +58 -0
- data/stylesheets/partials/base/_images.scss +10 -0
- data/stylesheets/partials/base/_links.scss +32 -0
- data/stylesheets/partials/base/_lists.scss +10 -0
- data/stylesheets/partials/base/_main.scss +7 -0
- data/stylesheets/partials/base/_paragraphs.scss +11 -0
- data/stylesheets/partials/base/_quotes.scss +45 -0
- data/stylesheets/partials/base/_smallprint.scss +21 -0
- data/stylesheets/partials/base/_tables.scss +150 -0
- data/stylesheets/partials/generic/_brand.scss +18 -0
- data/stylesheets/partials/generic/_clearfix.scss +19 -0
- data/stylesheets/partials/generic/_helper.scss +69 -0
- data/stylesheets/partials/generic/_mixins.scss +31 -0
- data/stylesheets/partials/generic/_reset.scss +75 -0
- data/stylesheets/partials/generic/_shared.scss +50 -0
- data/stylesheets/partials/objects/_block-list.scss +36 -0
- data/stylesheets/partials/objects/_buttons.scss +41 -0
- data/stylesheets/partials/objects/_columns.scss +22 -0
- data/stylesheets/partials/objects/_complex-link.scss +28 -0
- data/stylesheets/partials/objects/_flexbox.scss +39 -0
- data/stylesheets/partials/objects/_flyout.scss +57 -0
- data/stylesheets/partials/objects/_grids.scss +154 -0
- data/stylesheets/partials/objects/_icon-text.scss +36 -0
- data/stylesheets/partials/objects/_island.scss +33 -0
- data/stylesheets/partials/objects/_lozenges.scss +35 -0
- data/stylesheets/partials/objects/_matrix.scss +90 -0
- data/stylesheets/partials/objects/_media.scss +55 -0
- data/stylesheets/partials/objects/_nav.scss +62 -0
- data/stylesheets/partials/objects/_pagination.scss +39 -0
- data/stylesheets/partials/objects/_split.scss +35 -0
- data/stylesheets/partials/objects/_sprite.scss +62 -0
- data/stylesheets/partials/objects/_this-or-this.scss +33 -0
- data/templates/project/_vars.scss +38 -0
- data/templates/project/manifest.rb +3 -0
- data/templates/project/your-project.scss +16 -0
- 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,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.
|
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-
|
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:
|
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:
|
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
|
-
-
|
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:
|