grids_lite 1.0.0 → 1.0.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.
- checksums.yaml +4 -4
- data/README.md +31 -10
- data/app/assets/stylesheets/grids_lite/{base.css → base.scss} +4 -2
- data/app/assets/stylesheets/grids_lite/col-10.scss +97 -0
- data/app/assets/stylesheets/grids_lite/col-11.scss +106 -0
- data/app/assets/stylesheets/grids_lite/col-12.scss +115 -0
- data/app/assets/stylesheets/grids_lite/col-13.scss +124 -0
- data/app/assets/stylesheets/grids_lite/col-14.scss +133 -0
- data/app/assets/stylesheets/grids_lite/col-2.scss +25 -0
- data/app/assets/stylesheets/grids_lite/col-3.scss +34 -0
- data/app/assets/stylesheets/grids_lite/col-4.scss +43 -0
- data/app/assets/stylesheets/grids_lite/col-5.scss +52 -0
- data/app/assets/stylesheets/grids_lite/col-6.scss +61 -0
- data/app/assets/stylesheets/grids_lite/col-7.scss +70 -0
- data/app/assets/stylesheets/grids_lite/col-8.scss +79 -0
- data/app/assets/stylesheets/grids_lite/col-9.scss +88 -0
- data/app/assets/stylesheets/grids_lite/mixins.scss +3 -0
- data/grids_lite.gemspec +1 -0
- data/lib/generators/grids_lite_generator.rb +10 -0
- data/lib/generators/templates/variables.scss +3 -0
- data/lib/grids_lite/version.rb +1 -1
- metadata +34 -11
- data/app/assets/stylesheets/grids_lite/col-2.css +0 -22
- data/app/assets/stylesheets/grids_lite/col-3.css +0 -31
- data/app/assets/stylesheets/grids_lite/col-4.css +0 -40
- data/app/assets/stylesheets/grids_lite/col-5.css +0 -49
- data/app/assets/stylesheets/grids_lite/col-6.css +0 -58
- data/app/assets/stylesheets/grids_lite/col-7.css +0 -67
- data/app/assets/stylesheets/grids_lite/col-8.css +0 -76
- /data/app/assets/stylesheets/grids_lite/{col-1.css → col-1.scss} +0 -0
@@ -0,0 +1,34 @@
|
|
1
|
+
@import "grids_lite_variables";
|
2
|
+
@import "mixins";
|
3
|
+
|
4
|
+
.col-3-3 {
|
5
|
+
@include percentage(3, 3);
|
6
|
+
}
|
7
|
+
.col-2-3 {
|
8
|
+
@include percentage(2, 3);
|
9
|
+
}
|
10
|
+
.col-1-3 {
|
11
|
+
@include percentage(1, 3);
|
12
|
+
}
|
13
|
+
@media only screen and (min-width: $med-width) {
|
14
|
+
.col-3-3-med {
|
15
|
+
@include percentage(3, 3);
|
16
|
+
}
|
17
|
+
.col-2-3-med {
|
18
|
+
@include percentage(2, 3);
|
19
|
+
}
|
20
|
+
.col-1-3-med {
|
21
|
+
@include percentage(1, 3);
|
22
|
+
}
|
23
|
+
}
|
24
|
+
@media only screen and (min-width: $lrg-width) {
|
25
|
+
.col-3-3-lrg {
|
26
|
+
@include percentage(3, 3);
|
27
|
+
}
|
28
|
+
.col-2-3-lrg {
|
29
|
+
@include percentage(2, 3);
|
30
|
+
}
|
31
|
+
.col-1-3-lrg {
|
32
|
+
@include percentage(1, 3);
|
33
|
+
}
|
34
|
+
}
|
@@ -0,0 +1,43 @@
|
|
1
|
+
@import "grids_lite_variables";
|
2
|
+
@import "mixins";
|
3
|
+
|
4
|
+
.col-4-4 {
|
5
|
+
@include percentage(4, 4);
|
6
|
+
}
|
7
|
+
.col-3-4 {
|
8
|
+
@include percentage(3, 4);
|
9
|
+
}
|
10
|
+
.col-2-4 {
|
11
|
+
@include percentage(2, 4);
|
12
|
+
}
|
13
|
+
.col-1-4 {
|
14
|
+
@include percentage(1, 4);
|
15
|
+
}
|
16
|
+
@media only screen and (min-width: $med-width) {
|
17
|
+
.col-4-4-med {
|
18
|
+
@include percentage(4, 4);
|
19
|
+
}
|
20
|
+
.col-3-4-med {
|
21
|
+
@include percentage(3, 4);
|
22
|
+
}
|
23
|
+
.col-2-4-med {
|
24
|
+
@include percentage(2, 4);
|
25
|
+
}
|
26
|
+
.col-1-4-med {
|
27
|
+
@include percentage(1, 4);
|
28
|
+
}
|
29
|
+
}
|
30
|
+
@media only screen and (min-width: $lrg-width) {
|
31
|
+
.col-4-4-lrg {
|
32
|
+
@include percentage(4, 4);
|
33
|
+
}
|
34
|
+
.col-3-4-lrg {
|
35
|
+
@include percentage(3, 4);
|
36
|
+
}
|
37
|
+
.col-2-4-lrg {
|
38
|
+
@include percentage(2, 4);
|
39
|
+
}
|
40
|
+
.col-1-4-lrg {
|
41
|
+
@include percentage(1, 4);
|
42
|
+
}
|
43
|
+
}
|
@@ -0,0 +1,52 @@
|
|
1
|
+
@import "grids_lite_variables";
|
2
|
+
@import "mixins";
|
3
|
+
|
4
|
+
.col-5-5 {
|
5
|
+
@include percentage(5, 5);
|
6
|
+
}
|
7
|
+
.col-4-5 {
|
8
|
+
@include percentage(4, 5);
|
9
|
+
}
|
10
|
+
.col-3-5 {
|
11
|
+
@include percentage(3, 5);
|
12
|
+
}
|
13
|
+
.col-2-5 {
|
14
|
+
@include percentage(2, 5);
|
15
|
+
}
|
16
|
+
.col-1-5 {
|
17
|
+
@include percentage(1, 5);
|
18
|
+
}
|
19
|
+
@media only screen and (min-width: $med-width) {
|
20
|
+
.col-5-5-med {
|
21
|
+
@include percentage(5, 5);
|
22
|
+
}
|
23
|
+
.col-4-5-med {
|
24
|
+
@include percentage(4, 5);
|
25
|
+
}
|
26
|
+
.col-3-5-med {
|
27
|
+
@include percentage(3, 5);
|
28
|
+
}
|
29
|
+
.col-2-5-med {
|
30
|
+
@include percentage(2, 5);
|
31
|
+
}
|
32
|
+
.col-1-5-med {
|
33
|
+
@include percentage(1, 5);
|
34
|
+
}
|
35
|
+
}
|
36
|
+
@media only screen and (min-width: $lrg-width) {
|
37
|
+
.col-5-5-lrg {
|
38
|
+
@include percentage(5, 5);
|
39
|
+
}
|
40
|
+
.col-4-5-lrg {
|
41
|
+
@include percentage(4, 5);
|
42
|
+
}
|
43
|
+
.col-3-5-lrg {
|
44
|
+
@include percentage(3, 5);
|
45
|
+
}
|
46
|
+
.col-2-5-lrg {
|
47
|
+
@include percentage(2, 5);
|
48
|
+
}
|
49
|
+
.col-1-5-lrg {
|
50
|
+
@include percentage(1, 5);
|
51
|
+
}
|
52
|
+
}
|
@@ -0,0 +1,61 @@
|
|
1
|
+
@import "grids_lite_variables";
|
2
|
+
@import "mixins";
|
3
|
+
|
4
|
+
.col-6-6 {
|
5
|
+
@include percentage(6, 6);
|
6
|
+
}
|
7
|
+
.col-5-6 {
|
8
|
+
@include percentage(5, 6);
|
9
|
+
}
|
10
|
+
.col-4-6 {
|
11
|
+
@include percentage(4, 6);
|
12
|
+
}
|
13
|
+
.col-3-6 {
|
14
|
+
@include percentage(3, 6);
|
15
|
+
}
|
16
|
+
.col-2-6 {
|
17
|
+
@include percentage(2, 6);
|
18
|
+
}
|
19
|
+
.col-1-6 {
|
20
|
+
@include percentage(1, 6);
|
21
|
+
}
|
22
|
+
@media only screen and (min-width: $med-width) {
|
23
|
+
.col-6-6-med {
|
24
|
+
@include percentage(6, 6);
|
25
|
+
}
|
26
|
+
.col-5-6-med {
|
27
|
+
@include percentage(5, 6);
|
28
|
+
}
|
29
|
+
.col-4-6-med {
|
30
|
+
@include percentage(4, 6);
|
31
|
+
}
|
32
|
+
.col-3-6-med {
|
33
|
+
@include percentage(3, 6);
|
34
|
+
}
|
35
|
+
.col-2-6-med {
|
36
|
+
@include percentage(2, 6);
|
37
|
+
}
|
38
|
+
.col-1-6-med {
|
39
|
+
@include percentage(1, 6);
|
40
|
+
}
|
41
|
+
}
|
42
|
+
@media only screen and (min-width: $lrg-width) {
|
43
|
+
.col-6-6-lrg {
|
44
|
+
@include percentage(6, 6);
|
45
|
+
}
|
46
|
+
.col-5-6-lrg {
|
47
|
+
@include percentage(5, 6);
|
48
|
+
}
|
49
|
+
.col-4-6-lrg {
|
50
|
+
@include percentage(4, 6);
|
51
|
+
}
|
52
|
+
.col-3-6-lrg {
|
53
|
+
@include percentage(3, 6);
|
54
|
+
}
|
55
|
+
.col-2-6-lrg {
|
56
|
+
@include percentage(2, 6);
|
57
|
+
}
|
58
|
+
.col-1-6-lrg {
|
59
|
+
@include percentage(1, 6);
|
60
|
+
}
|
61
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
@import "grids_lite_variables";
|
2
|
+
@import "mixins";
|
3
|
+
|
4
|
+
.col-7-7 {
|
5
|
+
@include percentage(7, 7);
|
6
|
+
}
|
7
|
+
.col-6-7 {
|
8
|
+
@include percentage(6, 7);
|
9
|
+
}
|
10
|
+
.col-5-7 {
|
11
|
+
@include percentage(5, 7);
|
12
|
+
}
|
13
|
+
.col-4-7 {
|
14
|
+
@include percentage(4, 7);
|
15
|
+
}
|
16
|
+
.col-3-7 {
|
17
|
+
@include percentage(3, 7);
|
18
|
+
}
|
19
|
+
.col-2-7 {
|
20
|
+
@include percentage(2, 7);
|
21
|
+
}
|
22
|
+
.col-1-7 {
|
23
|
+
@include percentage(1, 7);
|
24
|
+
}
|
25
|
+
@media only screen and (min-width: $med-width) {
|
26
|
+
.col-7-7-med {
|
27
|
+
@include percentage(7, 7);
|
28
|
+
}
|
29
|
+
.col-6-7-med {
|
30
|
+
@include percentage(6, 7);
|
31
|
+
}
|
32
|
+
.col-5-7-med {
|
33
|
+
@include percentage(5, 7);
|
34
|
+
}
|
35
|
+
.col-4-7-med {
|
36
|
+
@include percentage(4, 7);
|
37
|
+
}
|
38
|
+
.col-3-7-med {
|
39
|
+
@include percentage(3, 7);
|
40
|
+
}
|
41
|
+
.col-2-7-med {
|
42
|
+
@include percentage(2, 7);
|
43
|
+
}
|
44
|
+
.col-1-7-med {
|
45
|
+
@include percentage(1, 7);
|
46
|
+
}
|
47
|
+
}
|
48
|
+
@media only screen and (min-width: $lrg-width) {
|
49
|
+
.col-7-7-lrg {
|
50
|
+
@include percentage(7, 7);
|
51
|
+
}
|
52
|
+
.col-6-7-lrg {
|
53
|
+
@include percentage(6, 7);
|
54
|
+
}
|
55
|
+
.col-5-7-lrg {
|
56
|
+
@include percentage(5, 7);
|
57
|
+
}
|
58
|
+
.col-4-7-lrg {
|
59
|
+
@include percentage(4, 7);
|
60
|
+
}
|
61
|
+
.col-3-7-lrg {
|
62
|
+
@include percentage(3, 7);
|
63
|
+
}
|
64
|
+
.col-2-7-lrg {
|
65
|
+
@include percentage(2, 7);
|
66
|
+
}
|
67
|
+
.col-1-7-lrg {
|
68
|
+
@include percentage(1, 7);
|
69
|
+
}
|
70
|
+
}
|
@@ -0,0 +1,79 @@
|
|
1
|
+
@import "grids_lite_variables";
|
2
|
+
@import "mixins";
|
3
|
+
|
4
|
+
.col-8-8 {
|
5
|
+
@include percentage(8, 8);
|
6
|
+
}
|
7
|
+
.col-7-8 {
|
8
|
+
@include percentage(7, 8);
|
9
|
+
}
|
10
|
+
.col-6-8 {
|
11
|
+
@include percentage(6, 8);
|
12
|
+
}
|
13
|
+
.col-5-8 {
|
14
|
+
@include percentage(5, 8);
|
15
|
+
}
|
16
|
+
.col-4-8 {
|
17
|
+
@include percentage(4, 8);
|
18
|
+
}
|
19
|
+
.col-3-8 {
|
20
|
+
@include percentage(3, 8);
|
21
|
+
}
|
22
|
+
.col-2-8 {
|
23
|
+
@include percentage(2, 8);
|
24
|
+
}
|
25
|
+
.col-1-8 {
|
26
|
+
@include percentage(1, 8);
|
27
|
+
}
|
28
|
+
@media only screen and (min-width: $med-width) {
|
29
|
+
.col-8-8-med {
|
30
|
+
@include percentage(8, 8);
|
31
|
+
}
|
32
|
+
.col-7-8-med {
|
33
|
+
@include percentage(7, 8);
|
34
|
+
}
|
35
|
+
.col-6-8-med {
|
36
|
+
@include percentage(6, 8);
|
37
|
+
}
|
38
|
+
.col-5-8-med {
|
39
|
+
@include percentage(5, 8);
|
40
|
+
}
|
41
|
+
.col-4-8-med {
|
42
|
+
@include percentage(4, 8);
|
43
|
+
}
|
44
|
+
.col-3-8-med {
|
45
|
+
@include percentage(3, 8);
|
46
|
+
}
|
47
|
+
.col-2-8-med {
|
48
|
+
@include percentage(2, 8);
|
49
|
+
}
|
50
|
+
.col-1-8-med {
|
51
|
+
@include percentage(1, 8);
|
52
|
+
}
|
53
|
+
}
|
54
|
+
@media only screen and (min-width: $lrg-width) {
|
55
|
+
.col-8-8-lrg {
|
56
|
+
@include percentage(8, 8);
|
57
|
+
}
|
58
|
+
.col-7-8-lrg {
|
59
|
+
@include percentage(7, 8);
|
60
|
+
}
|
61
|
+
.col-6-8-lrg {
|
62
|
+
@include percentage(6, 8);
|
63
|
+
}
|
64
|
+
.col-5-8-lrg {
|
65
|
+
@include percentage(5, 8);
|
66
|
+
}
|
67
|
+
.col-4-8-lrg {
|
68
|
+
@include percentage(4, 8);
|
69
|
+
}
|
70
|
+
.col-3-8-lrg {
|
71
|
+
@include percentage(3, 8);
|
72
|
+
}
|
73
|
+
.col-2-8-lrg {
|
74
|
+
@include percentage(2, 8);
|
75
|
+
}
|
76
|
+
.col-1-8-lrg {
|
77
|
+
@include percentage(1, 8);
|
78
|
+
}
|
79
|
+
}
|
@@ -0,0 +1,88 @@
|
|
1
|
+
@import "grids_lite_variables";
|
2
|
+
@import "mixins";
|
3
|
+
|
4
|
+
.col-9-9 {
|
5
|
+
@include percentage(9, 9);
|
6
|
+
}
|
7
|
+
.col-8-9 {
|
8
|
+
@include percentage(8, 9);
|
9
|
+
}
|
10
|
+
.col-7-9 {
|
11
|
+
@include percentage(7, 9);
|
12
|
+
}
|
13
|
+
.col-6-9 {
|
14
|
+
@include percentage(6, 9);
|
15
|
+
}
|
16
|
+
.col-5-9 {
|
17
|
+
@include percentage(5, 9);
|
18
|
+
}
|
19
|
+
.col-4-9 {
|
20
|
+
@include percentage(4, 9);
|
21
|
+
}
|
22
|
+
.col-3-9 {
|
23
|
+
@include percentage(3, 9);
|
24
|
+
}
|
25
|
+
.col-2-9 {
|
26
|
+
@include percentage(2, 9);
|
27
|
+
}
|
28
|
+
.col-1-9 {
|
29
|
+
@include percentage(1, 9);
|
30
|
+
}
|
31
|
+
@media only screen and (min-width: $med-width) {
|
32
|
+
.col-9-9-med {
|
33
|
+
@include percentage(9, 9);
|
34
|
+
}
|
35
|
+
.col-8-9-med {
|
36
|
+
@include percentage(8, 9);
|
37
|
+
}
|
38
|
+
.col-7-9-med {
|
39
|
+
@include percentage(7, 9);
|
40
|
+
}
|
41
|
+
.col-6-9-med {
|
42
|
+
@include percentage(6, 9);
|
43
|
+
}
|
44
|
+
.col-5-9-med {
|
45
|
+
@include percentage(5, 9);
|
46
|
+
}
|
47
|
+
.col-4-9-med {
|
48
|
+
@include percentage(4, 9);
|
49
|
+
}
|
50
|
+
.col-3-9-med {
|
51
|
+
@include percentage(3, 9);
|
52
|
+
}
|
53
|
+
.col-2-9-med {
|
54
|
+
@include percentage(2, 9);
|
55
|
+
}
|
56
|
+
.col-1-9-med {
|
57
|
+
@include percentage(1, 9);
|
58
|
+
}
|
59
|
+
}
|
60
|
+
@media only screen and (min-width: $lrg-width) {
|
61
|
+
.col-9-9-lrg {
|
62
|
+
@include percentage(9, 9);
|
63
|
+
}
|
64
|
+
.col-8-9-lrg {
|
65
|
+
@include percentage(8, 9);
|
66
|
+
}
|
67
|
+
.col-7-9-lrg {
|
68
|
+
@include percentage(7, 9);
|
69
|
+
}
|
70
|
+
.col-6-9-lrg {
|
71
|
+
@include percentage(6, 9);
|
72
|
+
}
|
73
|
+
.col-5-9-lrg {
|
74
|
+
@include percentage(5, 9);
|
75
|
+
}
|
76
|
+
.col-4-9-lrg {
|
77
|
+
@include percentage(4, 9);
|
78
|
+
}
|
79
|
+
.col-3-9-lrg {
|
80
|
+
@include percentage(3, 9);
|
81
|
+
}
|
82
|
+
.col-2-9-lrg {
|
83
|
+
@include percentage(2, 9);
|
84
|
+
}
|
85
|
+
.col-1-9-lrg {
|
86
|
+
@include percentage(1, 9);
|
87
|
+
}
|
88
|
+
}
|
data/grids_lite.gemspec
CHANGED
@@ -0,0 +1,10 @@
|
|
1
|
+
class GridsLiteGenerator < Rails::Generators::Base
|
2
|
+
source_root File.expand_path('../templates', __FILE__)
|
3
|
+
argument :arg, type: :string
|
4
|
+
|
5
|
+
def copy_variables_file
|
6
|
+
if arg == "variables"
|
7
|
+
copy_file "variables.scss", "app/assets/stylesheets/grids_lite_variables.scss"
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
data/lib/grids_lite/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grids_lite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miles Stanfield
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-01-
|
11
|
+
date: 2016-01-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -94,6 +94,20 @@ dependencies:
|
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: 1.1.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: generator_spec
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
97
111
|
description:
|
98
112
|
email:
|
99
113
|
- milesstanfield@gmail.com
|
@@ -109,18 +123,27 @@ files:
|
|
109
123
|
- LICENSE.txt
|
110
124
|
- README.md
|
111
125
|
- Rakefile
|
112
|
-
- app/assets/stylesheets/grids_lite/base.
|
113
|
-
- app/assets/stylesheets/grids_lite/col-1.
|
114
|
-
- app/assets/stylesheets/grids_lite/col-
|
115
|
-
- app/assets/stylesheets/grids_lite/col-
|
116
|
-
- app/assets/stylesheets/grids_lite/col-
|
117
|
-
- app/assets/stylesheets/grids_lite/col-
|
118
|
-
- app/assets/stylesheets/grids_lite/col-
|
119
|
-
- app/assets/stylesheets/grids_lite/col-
|
120
|
-
- app/assets/stylesheets/grids_lite/col-
|
126
|
+
- app/assets/stylesheets/grids_lite/base.scss
|
127
|
+
- app/assets/stylesheets/grids_lite/col-1.scss
|
128
|
+
- app/assets/stylesheets/grids_lite/col-10.scss
|
129
|
+
- app/assets/stylesheets/grids_lite/col-11.scss
|
130
|
+
- app/assets/stylesheets/grids_lite/col-12.scss
|
131
|
+
- app/assets/stylesheets/grids_lite/col-13.scss
|
132
|
+
- app/assets/stylesheets/grids_lite/col-14.scss
|
133
|
+
- app/assets/stylesheets/grids_lite/col-2.scss
|
134
|
+
- app/assets/stylesheets/grids_lite/col-3.scss
|
135
|
+
- app/assets/stylesheets/grids_lite/col-4.scss
|
136
|
+
- app/assets/stylesheets/grids_lite/col-5.scss
|
137
|
+
- app/assets/stylesheets/grids_lite/col-6.scss
|
138
|
+
- app/assets/stylesheets/grids_lite/col-7.scss
|
139
|
+
- app/assets/stylesheets/grids_lite/col-8.scss
|
140
|
+
- app/assets/stylesheets/grids_lite/col-9.scss
|
141
|
+
- app/assets/stylesheets/grids_lite/mixins.scss
|
121
142
|
- bin/console
|
122
143
|
- bin/setup
|
123
144
|
- grids_lite.gemspec
|
145
|
+
- lib/generators/grids_lite_generator.rb
|
146
|
+
- lib/generators/templates/variables.scss
|
124
147
|
- lib/grids_lite.rb
|
125
148
|
- lib/grids_lite/engine.rb
|
126
149
|
- lib/grids_lite/version.rb
|
@@ -1,22 +0,0 @@
|
|
1
|
-
.col-2-2 {
|
2
|
-
width: 100%;
|
3
|
-
}
|
4
|
-
.col-1-2 {
|
5
|
-
width: 50%;
|
6
|
-
}
|
7
|
-
@media only screen and (min-width: 48em) {
|
8
|
-
.col-2-2-med {
|
9
|
-
width: 100%;
|
10
|
-
}
|
11
|
-
.col-1-2-med {
|
12
|
-
width: 50%;
|
13
|
-
}
|
14
|
-
}
|
15
|
-
@media only screen and (min-width: 64em) {
|
16
|
-
.col-2-2-lrg {
|
17
|
-
width: 100%;
|
18
|
-
}
|
19
|
-
.col-1-2-lrg {
|
20
|
-
width: 50%;
|
21
|
-
}
|
22
|
-
}
|
@@ -1,31 +0,0 @@
|
|
1
|
-
.col-3-3 {
|
2
|
-
width: 100%;
|
3
|
-
}
|
4
|
-
.col-2-3, {
|
5
|
-
width: 66.66666666%;
|
6
|
-
}
|
7
|
-
.col-1-3, {
|
8
|
-
width: 33.33333333%;
|
9
|
-
}
|
10
|
-
@media only screen and (min-width: 48em) {
|
11
|
-
.col-3-3-med {
|
12
|
-
width: 100%;
|
13
|
-
}
|
14
|
-
.col-2-3-med, {
|
15
|
-
width: 66.66666666%;
|
16
|
-
}
|
17
|
-
.col-1-3-med, {
|
18
|
-
width: 33.33333333%;
|
19
|
-
}
|
20
|
-
}
|
21
|
-
@media only screen and (min-width: 64em) {
|
22
|
-
.col-3-3-lrg {
|
23
|
-
width: 100%;
|
24
|
-
}
|
25
|
-
.col-2-3-lrg, {
|
26
|
-
width: 66.66666666%;
|
27
|
-
}
|
28
|
-
.col-1-3-lrg, {
|
29
|
-
width: 33.33333333%;
|
30
|
-
}
|
31
|
-
}
|
@@ -1,40 +0,0 @@
|
|
1
|
-
.col-4-4 {
|
2
|
-
width: 100%;
|
3
|
-
}
|
4
|
-
.col-3-4, {
|
5
|
-
width: 75%;
|
6
|
-
}
|
7
|
-
.col-2-4 {
|
8
|
-
width: 50%;
|
9
|
-
}
|
10
|
-
.col-1-4, {
|
11
|
-
width: 25%;
|
12
|
-
}
|
13
|
-
@media only screen and (min-width: 48em) {
|
14
|
-
.col-4-4-med {
|
15
|
-
width: 100%;
|
16
|
-
}
|
17
|
-
.col-3-4-med, {
|
18
|
-
width: 75%;
|
19
|
-
}
|
20
|
-
.col-2-4-med {
|
21
|
-
width: 50%;
|
22
|
-
}
|
23
|
-
.col-1-4-med, {
|
24
|
-
width: 25%;
|
25
|
-
}
|
26
|
-
}
|
27
|
-
@media only screen and (min-width: 64em) {
|
28
|
-
.col-4-4-lrg {
|
29
|
-
width: 100%;
|
30
|
-
}
|
31
|
-
.col-3-4-lrg, {
|
32
|
-
width: 75%;
|
33
|
-
}
|
34
|
-
.col-2-4-lrg {
|
35
|
-
width: 50%;
|
36
|
-
}
|
37
|
-
.col-1-4-lrg, {
|
38
|
-
width: 25%;
|
39
|
-
}
|
40
|
-
}
|
@@ -1,49 +0,0 @@
|
|
1
|
-
.col-5-5 {
|
2
|
-
width: 100%;
|
3
|
-
}
|
4
|
-
.col-4-5 {
|
5
|
-
width: 80%;
|
6
|
-
}
|
7
|
-
.col-3-5 {
|
8
|
-
width: 60%;
|
9
|
-
}
|
10
|
-
.col-2-5 {
|
11
|
-
width: 40%;
|
12
|
-
}
|
13
|
-
.col-1-5 {
|
14
|
-
width: 20%;
|
15
|
-
}
|
16
|
-
@media only screen and (min-width: 48em) {
|
17
|
-
.col-5-5-med {
|
18
|
-
width: 100%;
|
19
|
-
}
|
20
|
-
.col-4-5-med {
|
21
|
-
width: 80%;
|
22
|
-
}
|
23
|
-
.col-3-5-med {
|
24
|
-
width: 60%;
|
25
|
-
}
|
26
|
-
.col-2-5-med {
|
27
|
-
width: 40%;
|
28
|
-
}
|
29
|
-
.col-1-5-med {
|
30
|
-
width: 20%;
|
31
|
-
}
|
32
|
-
}
|
33
|
-
@media only screen and (min-width: 64em) {
|
34
|
-
.col-5-5-lrg {
|
35
|
-
width: 100%;
|
36
|
-
}
|
37
|
-
.col-4-5-lrg {
|
38
|
-
width: 80%;
|
39
|
-
}
|
40
|
-
.col-3-5-lrg {
|
41
|
-
width: 60%;
|
42
|
-
}
|
43
|
-
.col-2-5-lrg {
|
44
|
-
width: 40%;
|
45
|
-
}
|
46
|
-
.col-1-5-lrg {
|
47
|
-
width: 20%;
|
48
|
-
}
|
49
|
-
}
|