Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/vendor/bulma/sass/grid/columns.sass')
-rw-r--r--assets/vendor/bulma/sass/grid/columns.sass41
1 files changed, 34 insertions, 7 deletions
diff --git a/assets/vendor/bulma/sass/grid/columns.sass b/assets/vendor/bulma/sass/grid/columns.sass
index 0b5d4de..34a8353 100644
--- a/assets/vendor/bulma/sass/grid/columns.sass
+++ b/assets/vendor/bulma/sass/grid/columns.sass
@@ -56,7 +56,7 @@ $column-gap: 0.75rem !default
margin-left: 60%
.columns.is-mobile > &.is-offset-four-fifths
margin-left: 80%
- @for $i from 1 through 12
+ @for $i from 0 through 12
.columns.is-mobile > &.is-#{$i}
flex: none
width: percentage($i / 12)
@@ -113,7 +113,7 @@ $column-gap: 0.75rem !default
margin-left: 60%
&.is-offset-four-fifths-mobile
margin-left: 80%
- @for $i from 1 through 12
+ @for $i from 0 through 12
&.is-#{$i}-mobile
flex: none
width: percentage($i / 12)
@@ -190,7 +190,7 @@ $column-gap: 0.75rem !default
&.is-offset-four-fifths,
&.is-offset-four-fifths-tablet
margin-left: 80%
- @for $i from 1 through 12
+ @for $i from 0 through 12
&.is-#{$i},
&.is-#{$i}-tablet
flex: none
@@ -249,7 +249,7 @@ $column-gap: 0.75rem !default
margin-left: 60%
&.is-offset-four-fifths-touch
margin-left: 80%
- @for $i from 1 through 12
+ @for $i from 0 through 12
&.is-#{$i}-touch
flex: none
width: percentage($i / 12)
@@ -306,7 +306,7 @@ $column-gap: 0.75rem !default
margin-left: 60%
&.is-offset-four-fifths-desktop
margin-left: 80%
- @for $i from 1 through 12
+ @for $i from 0 through 12
&.is-#{$i}-desktop
flex: none
width: percentage($i / 12)
@@ -363,7 +363,7 @@ $column-gap: 0.75rem !default
margin-left: 60%
&.is-offset-four-fifths-widescreen
margin-left: 80%
- @for $i from 1 through 12
+ @for $i from 0 through 12
&.is-#{$i}-widescreen
flex: none
width: percentage($i / 12)
@@ -420,7 +420,7 @@ $column-gap: 0.75rem !default
margin-left: 60%
&.is-offset-four-fifths-fullhd
margin-left: 80%
- @for $i from 1 through 12
+ @for $i from 0 through 12
&.is-#{$i}-fullhd
flex: none
width: percentage($i / 12)
@@ -475,3 +475,30 @@ $column-gap: 0.75rem !default
@for $i from 0 through 8
&.is-#{$i}
--columnGap: #{$i * 0.25rem}
+ +mobile
+ &.is-#{$i}-mobile
+ --columnGap: #{$i * 0.25rem}
+ +tablet
+ &.is-#{$i}-tablet
+ --columnGap: #{$i * 0.25rem}
+ +tablet-only
+ &.is-#{$i}-tablet-only
+ --columnGap: #{$i * 0.25rem}
+ +touch
+ &.is-#{$i}-touch
+ --columnGap: #{$i * 0.25rem}
+ +desktop
+ &.is-#{$i}-desktop
+ --columnGap: #{$i * 0.25rem}
+ +desktop-only
+ &.is-#{$i}-desktop-only
+ --columnGap: #{$i * 0.25rem}
+ +widescreen
+ &.is-#{$i}-widescreen
+ --columnGap: #{$i * 0.25rem}
+ +widescreen-only
+ &.is-#{$i}-widescreen-only
+ --columnGap: #{$i * 0.25rem}
+ +fullhd
+ &.is-#{$i}-fullhd
+ --columnGap: #{$i * 0.25rem}