@iris.interactive/handcook 1.0.8 → 1.0.9
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.
package/package.json
CHANGED
|
@@ -143,6 +143,30 @@ body.fullscreen {
|
|
|
143
143
|
margin-right: calc(50% - 50vw);
|
|
144
144
|
}
|
|
145
145
|
|
|
146
|
+
/* Container
|
|
147
|
+
/ ================================================== */
|
|
148
|
+
.container {
|
|
149
|
+
max-width: $container;
|
|
150
|
+
margin-left: auto;
|
|
151
|
+
margin-right: auto;
|
|
152
|
+
|
|
153
|
+
@include breakpoint(large) {
|
|
154
|
+
width: calc(100% - #{$margin-xlarge} * 2);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
@include breakpoint(medium) {
|
|
158
|
+
width: calc(100% - #{$margin-large} * 2);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
@include breakpoint(small) {
|
|
162
|
+
width: calc(100% - #{$margin-small} * 2);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
@include breakpoint(xsmall) {
|
|
166
|
+
width: calc(100% - #{$margin-xsmall} * 2);
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
146
170
|
/* Margin element
|
|
147
171
|
/ ================================================== */
|
|
148
172
|
.hentry {
|