rails_layout 0.5.1 → 0.5.2
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e95f1a59f270874088175daee2ab4fd6fed4894d
|
|
4
|
+
data.tar.gz: 09fdcabb0eda04fc44a25663f3f62b83ea9ea397
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b4d8e56d76259ca7f52f796dc6ac97d38ac779cea4b05230e050361948fa82e210e9e349ab2042e5f4e7146f685e145cc1a381650ee847b1752b01adac68de6
|
|
7
|
+
data.tar.gz: 92a37c76905a098b2594183bac11f37f55408714b232dba69872efdf83cf7882c0af308bc4cd4b4065ea4c6cdb5c3223700d7ed233e448bdc7ca542975483e6c
|
data/CHANGELOG.textile
CHANGED
|
@@ -12,17 +12,17 @@
|
|
|
12
12
|
|
|
13
13
|
// use mixins to create semantic classes
|
|
14
14
|
// these are examples you can modify
|
|
15
|
-
@mixin
|
|
15
|
+
@mixin twelve-columns {
|
|
16
16
|
@extend .small-12;
|
|
17
17
|
@extend .columns;
|
|
18
18
|
}
|
|
19
|
-
@mixin
|
|
19
|
+
@mixin six-columns-centered {
|
|
20
20
|
@extend .small-6;
|
|
21
21
|
@extend .columns;
|
|
22
22
|
@extend .text-center;
|
|
23
23
|
}
|
|
24
24
|
main {
|
|
25
|
-
@include
|
|
25
|
+
@include twelve-columns;
|
|
26
26
|
background-color: #eee;
|
|
27
27
|
}
|
|
28
28
|
section {
|
|
@@ -30,13 +30,13 @@ section {
|
|
|
30
30
|
margin-top: 20px;
|
|
31
31
|
}
|
|
32
32
|
.column {
|
|
33
|
-
@include
|
|
33
|
+
@include six-columns-centered;
|
|
34
34
|
}
|
|
35
35
|
.form {
|
|
36
36
|
@include grid-column(6);
|
|
37
37
|
}
|
|
38
38
|
.form-centered {
|
|
39
|
-
@include
|
|
39
|
+
@include six-columns-centered;
|
|
40
40
|
}
|
|
41
41
|
.submit {
|
|
42
42
|
@extend .button;
|
data/lib/rails_layout/version.rb
CHANGED