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/helpers')
-rw-r--r--assets/vendor/bulma/sass/helpers/_all.sass10
-rw-r--r--assets/vendor/bulma/sass/helpers/color.sass37
-rw-r--r--assets/vendor/bulma/sass/helpers/float.sass8
-rw-r--r--assets/vendor/bulma/sass/helpers/other.sass8
-rw-r--r--assets/vendor/bulma/sass/helpers/overflow.sass2
-rw-r--r--assets/vendor/bulma/sass/helpers/position.sass5
-rw-r--r--assets/vendor/bulma/sass/helpers/spacing.sass28
-rw-r--r--assets/vendor/bulma/sass/helpers/typography.sass98
-rw-r--r--assets/vendor/bulma/sass/helpers/visibility.sass122
9 files changed, 318 insertions, 0 deletions
diff --git a/assets/vendor/bulma/sass/helpers/_all.sass b/assets/vendor/bulma/sass/helpers/_all.sass
new file mode 100644
index 0000000..89ef0a7
--- /dev/null
+++ b/assets/vendor/bulma/sass/helpers/_all.sass
@@ -0,0 +1,10 @@
+@charset "utf-8"
+
+@import "color.sass"
+@import "float.sass"
+@import "other.sass"
+@import "overflow.sass"
+@import "position.sass"
+@import "spacing.sass"
+@import "typography.sass"
+@import "visibility.sass"
diff --git a/assets/vendor/bulma/sass/helpers/color.sass b/assets/vendor/bulma/sass/helpers/color.sass
new file mode 100644
index 0000000..22ac8c5
--- /dev/null
+++ b/assets/vendor/bulma/sass/helpers/color.sass
@@ -0,0 +1,37 @@
+@each $name, $pair in $colors
+ $color: nth($pair, 1)
+ .has-text-#{$name}
+ color: $color !important
+ a.has-text-#{$name}
+ &:hover,
+ &:focus
+ color: bulmaDarken($color, 10%) !important
+ .has-background-#{$name}
+ background-color: $color !important
+ @if length($pair) >= 4
+ $color-light: nth($pair, 3)
+ $color-dark: nth($pair, 4)
+ // Light
+ .has-text-#{$name}-light
+ color: $color-light !important
+ a.has-text-#{$name}-light
+ &:hover,
+ &:focus
+ color: bulmaDarken($color-light, 10%) !important
+ .has-background-#{$name}-light
+ background-color: $color-light !important
+ // Dark
+ .has-text-#{$name}-dark
+ color: $color-dark !important
+ a.has-text-#{$name}-dark
+ &:hover,
+ &:focus
+ color: bulmaLighten($color-dark, 10%) !important
+ .has-background-#{$name}-dark
+ background-color: $color-dark !important
+
+@each $name, $shade in $shades
+ .has-text-#{$name}
+ color: $shade !important
+ .has-background-#{$name}
+ background-color: $shade !important
diff --git a/assets/vendor/bulma/sass/helpers/float.sass b/assets/vendor/bulma/sass/helpers/float.sass
new file mode 100644
index 0000000..fc77f17
--- /dev/null
+++ b/assets/vendor/bulma/sass/helpers/float.sass
@@ -0,0 +1,8 @@
+.is-clearfix
+ +clearfix
+
+.is-pulled-left
+ float: left !important
+
+.is-pulled-right
+ float: right !important
diff --git a/assets/vendor/bulma/sass/helpers/other.sass b/assets/vendor/bulma/sass/helpers/other.sass
new file mode 100644
index 0000000..9aa271b
--- /dev/null
+++ b/assets/vendor/bulma/sass/helpers/other.sass
@@ -0,0 +1,8 @@
+.is-radiusless
+ border-radius: 0 !important
+
+.is-shadowless
+ box-shadow: none !important
+
+.is-unselectable
+ @extend %unselectable
diff --git a/assets/vendor/bulma/sass/helpers/overflow.sass b/assets/vendor/bulma/sass/helpers/overflow.sass
new file mode 100644
index 0000000..ef1e3ef
--- /dev/null
+++ b/assets/vendor/bulma/sass/helpers/overflow.sass
@@ -0,0 +1,2 @@
+.is-clipped
+ overflow: hidden !important
diff --git a/assets/vendor/bulma/sass/helpers/position.sass b/assets/vendor/bulma/sass/helpers/position.sass
new file mode 100644
index 0000000..083b36b
--- /dev/null
+++ b/assets/vendor/bulma/sass/helpers/position.sass
@@ -0,0 +1,5 @@
+.is-overlay
+ @extend %overlay
+
+.is-relative
+ position: relative !important
diff --git a/assets/vendor/bulma/sass/helpers/spacing.sass b/assets/vendor/bulma/sass/helpers/spacing.sass
new file mode 100644
index 0000000..b7e571e
--- /dev/null
+++ b/assets/vendor/bulma/sass/helpers/spacing.sass
@@ -0,0 +1,28 @@
+.is-marginless
+ margin: 0 !important
+
+.is-paddingless
+ padding: 0 !important
+
+$spacing-shortcuts: ("margin": "m", "padding": "p") !default
+$spacing-directions: ("top": "t", "right": "r", "bottom": "b", "left": "l") !default
+$spacing-horizontal: "x" !default
+$spacing-vertical: "y" !default
+$spacing-values: ("0": 0, "1": 0.25rem, "2": 0.5rem, "3": 0.75rem, "4": 1rem, "5": 1.5rem, "6": 3rem) !default
+
+@each $property, $shortcut in $spacing-shortcuts
+ @each $name, $value in $spacing-values
+ // Cardinal directions
+ @each $direction, $suffix in $spacing-directions
+ .#{$shortcut}#{$suffix}-#{$name}
+ #{$property}-#{$direction}: $value !important
+ // Horizontal axis
+ @if $spacing-horizontal != null
+ .#{$shortcut}#{$spacing-horizontal}-#{$name}
+ #{$property}-left: $value !important
+ #{$property}-right: $value !important
+ // Vertical axis
+ @if $spacing-vertical != null
+ .#{$shortcut}#{$spacing-vertical}-#{$name}
+ #{$property}-top: $value !important
+ #{$property}-bottom: $value !important
diff --git a/assets/vendor/bulma/sass/helpers/typography.sass b/assets/vendor/bulma/sass/helpers/typography.sass
new file mode 100644
index 0000000..eafd7e0
--- /dev/null
+++ b/assets/vendor/bulma/sass/helpers/typography.sass
@@ -0,0 +1,98 @@
+=typography-size($target:'')
+ @each $size in $sizes
+ $i: index($sizes, $size)
+ .is-size-#{$i}#{if($target == '', '', '-' + $target)}
+ font-size: $size !important
+
++typography-size()
+
++mobile
+ +typography-size('mobile')
+
++tablet
+ +typography-size('tablet')
+
++touch
+ +typography-size('touch')
+
++desktop
+ +typography-size('desktop')
+
++widescreen
+ +typography-size('widescreen')
+
++fullhd
+ +typography-size('fullhd')
+
+$alignments: ('centered': 'center', 'justified': 'justify', 'left': 'left', 'right': 'right')
+
+@each $alignment, $text-align in $alignments
+ .has-text-#{$alignment}
+ text-align: #{$text-align} !important
+
+@each $alignment, $text-align in $alignments
+ +mobile
+ .has-text-#{$alignment}-mobile
+ text-align: #{$text-align} !important
+ +tablet
+ .has-text-#{$alignment}-tablet
+ text-align: #{$text-align} !important
+ +tablet-only
+ .has-text-#{$alignment}-tablet-only
+ text-align: #{$text-align} !important
+ +touch
+ .has-text-#{$alignment}-touch
+ text-align: #{$text-align} !important
+ +desktop
+ .has-text-#{$alignment}-desktop
+ text-align: #{$text-align} !important
+ +desktop-only
+ .has-text-#{$alignment}-desktop-only
+ text-align: #{$text-align} !important
+ +widescreen
+ .has-text-#{$alignment}-widescreen
+ text-align: #{$text-align} !important
+ +widescreen-only
+ .has-text-#{$alignment}-widescreen-only
+ text-align: #{$text-align} !important
+ +fullhd
+ .has-text-#{$alignment}-fullhd
+ text-align: #{$text-align} !important
+
+.is-capitalized
+ text-transform: capitalize !important
+
+.is-lowercase
+ text-transform: lowercase !important
+
+.is-uppercase
+ text-transform: uppercase !important
+
+.is-italic
+ font-style: italic !important
+
+.has-text-weight-light
+ font-weight: $weight-light !important
+.has-text-weight-normal
+ font-weight: $weight-normal !important
+.has-text-weight-medium
+ font-weight: $weight-medium !important
+.has-text-weight-semibold
+ font-weight: $weight-semibold !important
+.has-text-weight-bold
+ font-weight: $weight-bold !important
+
+.is-family-primary
+ font-family: $family-primary !important
+
+.is-family-secondary
+ font-family: $family-secondary !important
+
+.is-family-sans-serif
+ font-family: $family-sans-serif !important
+
+.is-family-monospace
+ font-family: $family-monospace !important
+
+.is-family-code
+ font-family: $family-code !important
diff --git a/assets/vendor/bulma/sass/helpers/visibility.sass b/assets/vendor/bulma/sass/helpers/visibility.sass
new file mode 100644
index 0000000..92477f3
--- /dev/null
+++ b/assets/vendor/bulma/sass/helpers/visibility.sass
@@ -0,0 +1,122 @@
+
+
+$displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
+
+@each $display in $displays
+ .is-#{$display}
+ display: #{$display} !important
+ +mobile
+ .is-#{$display}-mobile
+ display: #{$display} !important
+ +tablet
+ .is-#{$display}-tablet
+ display: #{$display} !important
+ +tablet-only
+ .is-#{$display}-tablet-only
+ display: #{$display} !important
+ +touch
+ .is-#{$display}-touch
+ display: #{$display} !important
+ +desktop
+ .is-#{$display}-desktop
+ display: #{$display} !important
+ +desktop-only
+ .is-#{$display}-desktop-only
+ display: #{$display} !important
+ +widescreen
+ .is-#{$display}-widescreen
+ display: #{$display} !important
+ +widescreen-only
+ .is-#{$display}-widescreen-only
+ display: #{$display} !important
+ +fullhd
+ .is-#{$display}-fullhd
+ display: #{$display} !important
+
+.is-hidden
+ display: none !important
+
+.is-sr-only
+ border: none !important
+ clip: rect(0, 0, 0, 0) !important
+ height: 0.01em !important
+ overflow: hidden !important
+ padding: 0 !important
+ position: absolute !important
+ white-space: nowrap !important
+ width: 0.01em !important
+
++mobile
+ .is-hidden-mobile
+ display: none !important
+
++tablet
+ .is-hidden-tablet
+ display: none !important
+
++tablet-only
+ .is-hidden-tablet-only
+ display: none !important
+
++touch
+ .is-hidden-touch
+ display: none !important
+
++desktop
+ .is-hidden-desktop
+ display: none !important
+
++desktop-only
+ .is-hidden-desktop-only
+ display: none !important
+
++widescreen
+ .is-hidden-widescreen
+ display: none !important
+
++widescreen-only
+ .is-hidden-widescreen-only
+ display: none !important
+
++fullhd
+ .is-hidden-fullhd
+ display: none !important
+
+.is-invisible
+ visibility: hidden !important
+
++mobile
+ .is-invisible-mobile
+ visibility: hidden !important
+
++tablet
+ .is-invisible-tablet
+ visibility: hidden !important
+
++tablet-only
+ .is-invisible-tablet-only
+ visibility: hidden !important
+
++touch
+ .is-invisible-touch
+ visibility: hidden !important
+
++desktop
+ .is-invisible-desktop
+ visibility: hidden !important
+
++desktop-only
+ .is-invisible-desktop-only
+ visibility: hidden !important
+
++widescreen
+ .is-invisible-widescreen
+ visibility: hidden !important
+
++widescreen-only
+ .is-invisible-widescreen-only
+ visibility: hidden !important
+
++fullhd
+ .is-invisible-fullhd
+ visibility: hidden !important