huxley 0.1.0 → 0.2.0
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.
- checksums.yaml +4 -4
- data/.gitignore +2 -1
- data/app/assets/stylesheets/huxley/_grid.sass +2 -8
- data/lib/huxley/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae8bfd08d582a32977477df7eef50559d32bfe48
|
|
4
|
+
data.tar.gz: f225e75cd63c97fb8b689a9d8e3db1f811321059
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b68c813db283b51fe2a28e0f2587823285117b71d631a6aa1dcfdc4fc9111e63fa3bc3600454cebba4da2d18ea55ca705792ad8b7ce00d9078c193cc46f090f0
|
|
7
|
+
data.tar.gz: 04ea2388ac1f6d5cbe07a6cc66e72abd82c29d014f7f8439de77f860e3f1f40779bc27e822f7cd04677044abf6b0bc48ce9b6d15ccacda0d98328b094846eecf
|
data/.gitignore
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
*.gem
|
|
1
|
+
*.gem
|
|
2
|
+
demo/
|
|
@@ -20,7 +20,7 @@ $max-width: if($max == 0, 100%, $max * $rhythm)
|
|
|
20
20
|
// Size is the number of columns the item spans
|
|
21
21
|
// Position is the column number the grid items starts on
|
|
22
22
|
@mixin span($size, $position, $clear: none)
|
|
23
|
-
box-sizing
|
|
23
|
+
@include box-sizing(border-box)
|
|
24
24
|
width: percentage($size / $column-count)
|
|
25
25
|
float: left
|
|
26
26
|
clear: $clear
|
|
@@ -30,15 +30,9 @@ $max-width: if($max == 0, 100%, $max * $rhythm)
|
|
|
30
30
|
left: $gutter-width / 2
|
|
31
31
|
right: $gutter-width / 2
|
|
32
32
|
|
|
33
|
-
@mixin clearfix
|
|
34
|
-
&:before, &:after
|
|
35
|
-
content: " "
|
|
36
|
-
display: table
|
|
37
|
-
&:after
|
|
38
|
-
clear: both
|
|
39
|
-
|
|
40
33
|
@mixin container
|
|
41
34
|
@include clearfix
|
|
35
|
+
@include box-sizing(border-box)
|
|
42
36
|
position: relative
|
|
43
37
|
margin:
|
|
44
38
|
left: auto
|
data/lib/huxley/version.rb
CHANGED