diff options
Diffstat (limited to 'themes/hugo-pt2021/assets/bulma-0.9.3/sass/elements/container.sass')
-rw-r--r-- | themes/hugo-pt2021/assets/bulma-0.9.3/sass/elements/container.sass | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/themes/hugo-pt2021/assets/bulma-0.9.3/sass/elements/container.sass b/themes/hugo-pt2021/assets/bulma-0.9.3/sass/elements/container.sass new file mode 100644 index 0000000..c13011e --- /dev/null +++ b/themes/hugo-pt2021/assets/bulma-0.9.3/sass/elements/container.sass @@ -0,0 +1,29 @@ +@import "../utilities/mixins" + +$container-offset: (2 * $gap) !default +$container-max-width: $fullhd !default + +.container + flex-grow: 1 + margin: 0 auto + position: relative + width: auto + &.is-fluid + max-width: none !important + padding-left: $gap + padding-right: $gap + width: 100% + +desktop + max-width: $desktop - $container-offset + +until-widescreen + &.is-widescreen:not(.is-max-desktop) + max-width: min($widescreen, $container-max-width) - $container-offset + +until-fullhd + &.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen) + max-width: min($fullhd, $container-max-width) - $container-offset + +widescreen + &:not(.is-max-desktop) + max-width: min($widescreen, $container-max-width) - $container-offset + +fullhd + &:not(.is-max-desktop):not(.is-max-widescreen) + max-width: min($fullhd, $container-max-width) - $container-offset |