mirror of
https://github.com/deps-rs/deps.rs.git
synced 2024-11-23 02:46:31 +00:00
25 lines
614 B
Sass
25 lines
614 B
Sass
|
.container
|
||
|
margin: 0 auto
|
||
|
position: relative
|
||
|
+from($desktop)
|
||
|
max-width: $desktop - (2 * $gap)
|
||
|
width: $desktop - (2 * $gap)
|
||
|
&.is-fluid
|
||
|
margin-left: $gap
|
||
|
margin-right: $gap
|
||
|
max-width: none
|
||
|
width: auto
|
||
|
+until($widescreen)
|
||
|
&.is-widescreen
|
||
|
max-width: $widescreen - (2 * $gap)
|
||
|
width: auto
|
||
|
+until($fullhd)
|
||
|
&.is-fullhd
|
||
|
max-width: $fullhd - (2 * $gap)
|
||
|
width: auto
|
||
|
+from($widescreen)
|
||
|
max-width: $widescreen - (2 * $gap)
|
||
|
width: $widescreen - (2 * $gap)
|
||
|
+from($fullhd)
|
||
|
max-width: $fullhd - (2 * $gap)
|
||
|
width: $fullhd - (2 * $gap)
|