2020-06-12 20:03:43 +00:00
|
|
|
/* License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
|
|
|
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE */
|
2018-03-25 17:30:42 +00:00
|
|
|
@import 'mixins';
|
|
|
|
|
|
|
|
@mixin container {
|
|
|
|
width: 100%;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
position: relative;
|
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
display: table;
|
|
|
|
line-height: 0;
|
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
&:after {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
@include container;
|
|
|
|
max-width: 980px;
|
|
|
|
}
|
|
|
|
.container--800 {
|
|
|
|
@include container;
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
.container--700 {
|
|
|
|
@include container;
|
|
|
|
max-width: 700px;
|
|
|
|
}
|
|
|
|
.container--narrow {
|
|
|
|
@include container;
|
|
|
|
max-width: 600px;
|
|
|
|
}
|
|
|
|
.container--mid {
|
|
|
|
@include container;
|
|
|
|
min-width: 700px;
|
|
|
|
max-width: 980px;
|
|
|
|
}
|
|
|
|
.container--wide {
|
|
|
|
@include container;
|
|
|
|
min-width: 920px;
|
|
|
|
max-width: 1200px;
|
|
|
|
}
|