ama_layout 4.0.0 → 4.1.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/app/assets/stylesheets/ama_layout/layout/helper-classes.scss +5 -0
- data/app/assets/stylesheets/ama_layout/layout_components/callouts.scss +49 -11
- data/app/assets/stylesheets/ama_layout/layout_components/sections.scss +4 -0
- data/lib/ama_layout/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fecb364fae0b80bf39e0908d9653d2ed5298a5cf
|
|
4
|
+
data.tar.gz: 8b14b9d07d7572f6c6dba5ce217be5a1a52ba94f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ba49bd7860ad6132e05f8427e25af69b24ac7917626bc1dae8d38e792a0e99b7724c8a9a9723a947ee83a19f082228b6193dcf8d1a1294df1f9fac593712be4
|
|
7
|
+
data.tar.gz: e94eea783946274a995f6bfe892b50787b108062fb1faa334db98146023ed6dd4d7421f605c58ff5688e1124896464873dfa9be1e20b6c6f07fbfca3a054f2ab
|
|
@@ -56,13 +56,11 @@
|
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
.promo-block{
|
|
59
|
-
@include callout($ash);
|
|
60
|
-
@include show-for(medium);
|
|
61
59
|
position: relative;
|
|
62
60
|
overflow: auto;
|
|
63
61
|
|
|
64
62
|
&__divider{
|
|
65
|
-
@include show-for(
|
|
63
|
+
@include show-for(medium);
|
|
66
64
|
position: absolute;
|
|
67
65
|
color: $smoke;
|
|
68
66
|
font-size: 1.75rem;
|
|
@@ -80,27 +78,67 @@
|
|
|
80
78
|
}
|
|
81
79
|
|
|
82
80
|
&__item{
|
|
81
|
+
@extend .clearfix;
|
|
83
82
|
@include medium-4;
|
|
84
83
|
text-align: center;
|
|
84
|
+
|
|
85
|
+
@include breakpoint(small down){
|
|
86
|
+
text-align: left;
|
|
87
|
+
|
|
88
|
+
p{
|
|
89
|
+
@include small-9;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
85
92
|
}
|
|
86
93
|
|
|
87
94
|
&__icon-container{
|
|
95
|
+
margin: 0 0 $base-margin 0;
|
|
96
|
+
@include breakpoint(small down){
|
|
97
|
+
@include small-3;
|
|
98
|
+
padding: 0;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&__icon-background{
|
|
88
103
|
width: 110px;
|
|
89
104
|
height: 110px;
|
|
90
|
-
margin:
|
|
105
|
+
margin: 0 auto;
|
|
91
106
|
background: $smoke;
|
|
107
|
+
position: relative;
|
|
108
|
+
|
|
109
|
+
@include breakpoint(small down){
|
|
110
|
+
width: 60%;
|
|
111
|
+
height: auto;
|
|
112
|
+
padding-top: 60%;
|
|
113
|
+
min-width: 65px;
|
|
114
|
+
min-height: 65px;
|
|
115
|
+
}
|
|
92
116
|
|
|
93
117
|
&--round{
|
|
94
|
-
@extend .promo-block__icon-
|
|
118
|
+
@extend .promo-block__icon-background;
|
|
95
119
|
border-radius: 100%;
|
|
96
120
|
}
|
|
97
121
|
}
|
|
98
122
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
123
|
+
&__icon{
|
|
124
|
+
color: $white;
|
|
125
|
+
font-size: 4rem;
|
|
126
|
+
text-align: center;
|
|
127
|
+
width: 100%;
|
|
128
|
+
left: 0;
|
|
129
|
+
@include vertical-center;
|
|
130
|
+
|
|
131
|
+
@include breakpoint(small down){
|
|
132
|
+
font-size: 2.5rem;
|
|
105
133
|
}
|
|
134
|
+
|
|
135
|
+
&-image{
|
|
136
|
+
@extend .promo-block__icon;
|
|
137
|
+
height: 50px;
|
|
138
|
+
|
|
139
|
+
@include breakpoint(small down){
|
|
140
|
+
height: 31px;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
106
144
|
}
|
data/lib/ama_layout/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ama_layout
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael van den Beuken
|
|
@@ -18,7 +18,7 @@ authors:
|
|
|
18
18
|
autorequire:
|
|
19
19
|
bindir: bin
|
|
20
20
|
cert_chain: []
|
|
21
|
-
date: 2016-08-
|
|
21
|
+
date: 2016-08-18 00:00:00.000000000 Z
|
|
22
22
|
dependencies:
|
|
23
23
|
- !ruby/object:Gem::Dependency
|
|
24
24
|
name: foundation-rails
|
|
@@ -404,7 +404,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
404
404
|
version: '0'
|
|
405
405
|
requirements: []
|
|
406
406
|
rubyforge_project:
|
|
407
|
-
rubygems_version: 2.5.1
|
|
407
|
+
rubygems_version: 2.4.5.1
|
|
408
408
|
signing_key:
|
|
409
409
|
specification_version: 4
|
|
410
410
|
summary: ".ama.ab.ca site layouts"
|