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/base')
-rw-r--r--assets/vendor/bulma/sass/base/_all.sass1
-rw-r--r--assets/vendor/bulma/sass/base/generic.sass35
-rw-r--r--assets/vendor/bulma/sass/base/helpers.sass252
-rw-r--r--assets/vendor/bulma/sass/base/minireset.sass6
4 files changed, 29 insertions, 265 deletions
diff --git a/assets/vendor/bulma/sass/base/_all.sass b/assets/vendor/bulma/sass/base/_all.sass
index e913d6b..ce1dddc 100644
--- a/assets/vendor/bulma/sass/base/_all.sass
+++ b/assets/vendor/bulma/sass/base/_all.sass
@@ -2,4 +2,3 @@
@import "minireset.sass"
@import "generic.sass"
-@import "helpers.sass"
diff --git a/assets/vendor/bulma/sass/base/generic.sass b/assets/vendor/bulma/sass/base/generic.sass
index bb0e37a..75d6efd 100644
--- a/assets/vendor/bulma/sass/base/generic.sass
+++ b/assets/vendor/bulma/sass/base/generic.sass
@@ -1,8 +1,13 @@
-$body-background-color: $white !default
+$body-background-color: $scheme-main !default
$body-size: 16px !default
+$body-min-width: 300px !default
$body-rendering: optimizeLegibility !default
$body-family: $family-primary !default
+$body-overflow-x: hidden !default
+$body-overflow-y: scroll !default
+
$body-color: $text !default
+$body-font-size: 1em !default
$body-weight: $weight-normal !default
$body-line-height: 1.5 !default
@@ -11,6 +16,8 @@ $code-padding: 0.25em 0.5em 0.25em !default
$code-weight: normal !default
$code-size: 0.875em !default
+$small-font-size: 0.875em !default
+
$hr-background-color: $background !default
$hr-height: 2px !default
$hr-margin: 1.5rem 0 !default
@@ -18,14 +25,18 @@ $hr-margin: 1.5rem 0 !default
$strong-color: $text-strong !default
$strong-weight: $weight-bold !default
+$pre-font-size: 0.875em !default
+$pre-padding: 1.25rem 1.5rem !default
+$pre-code-font-size: 1em !default
+
html
background-color: $body-background-color
font-size: $body-size
-moz-osx-font-smoothing: grayscale
-webkit-font-smoothing: antialiased
- min-width: 300px
- overflow-x: hidden
- overflow-y: scroll
+ min-width: $body-min-width
+ overflow-x: $body-overflow-x
+ overflow-y: $body-overflow-y
text-rendering: $body-rendering
text-size-adjust: 100%
@@ -53,7 +64,7 @@ pre
body
color: $body-color
- font-size: 1rem
+ font-size: $body-font-size
font-weight: $body-weight
line-height: $body-line-height
@@ -91,7 +102,7 @@ input[type="radio"]
vertical-align: baseline
small
- font-size: 0.875em
+ font-size: $small-font-size
span
font-style: inherit
@@ -103,25 +114,29 @@ strong
// Block
+fieldset
+ border: none
+
pre
+overflow-touch
background-color: $pre-background
color: $pre
- font-size: 0.875em
+ font-size: $pre-font-size
overflow-x: auto
- padding: 1.25rem 1.5rem
+ padding: $pre-padding
white-space: pre
word-wrap: normal
code
background-color: transparent
color: currentColor
- font-size: 1em
+ font-size: $pre-code-font-size
padding: 0
table
td,
th
- text-align: left
vertical-align: top
+ &:not([align])
+ text-align: inherit
th
color: $text-strong
diff --git a/assets/vendor/bulma/sass/base/helpers.sass b/assets/vendor/bulma/sass/base/helpers.sass
index 32cafa4..e356830 100644
--- a/assets/vendor/bulma/sass/base/helpers.sass
+++ b/assets/vendor/bulma/sass/base/helpers.sass
@@ -1,251 +1 @@
-// Float
-
-.is-clearfix
- +clearfix
-
-.is-pulled-left
- float: left !important
-
-.is-pulled-right
- float: right !important
-
-// Overflow
-
-.is-clipped
- overflow: hidden !important
-
-// Overlay
-
-.is-overlay
- +overlay
-
-// Typography
-
-=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
-
-@each $name, $pair in $colors
- $color: nth($pair, 1)
- .has-text-#{$name}
- color: $color !important
- a.has-text-#{$name}
- &:hover,
- &:focus
- color: darken($color, 10%) !important
- .has-background-#{$name}
- background-color: $color !important
-
-@each $name, $shade in $shades
- .has-text-#{$name}
- color: $shade !important
- .has-background-#{$name}
- background-color: $shade !important
-
-.has-text-weight-light
- font-weight: $weight-light !important
-.has-text-weight-normal
- font-weight: $weight-normal !important
-.has-text-weight-semibold
- font-weight: $weight-semibold !important
-.has-text-weight-bold
- font-weight: $weight-bold !important
-
-// Visibility
-
-$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
-
-+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
-
-// Other
-
-.is-marginless
- margin: 0 !important
-
-.is-paddingless
- padding: 0 !important
-
-.is-radiusless
- border-radius: 0 !important
-
-.is-shadowless
- box-shadow: none !important
-
-.is-unselectable
- +unselectable
+@warn "The helpers.sass file is DEPRECATED. It has moved into its own /helpers folder. Please import sass/helpers/_all instead."
diff --git a/assets/vendor/bulma/sass/base/minireset.sass b/assets/vendor/bulma/sass/base/minireset.sass
index e99311c..aa2b6f3 100644
--- a/assets/vendor/bulma/sass/base/minireset.sass
+++ b/assets/vendor/bulma/sass/base/minireset.sass
@@ -1,4 +1,4 @@
-/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */
+/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
// Blocks
html,
body,
@@ -59,7 +59,6 @@ html
// Media
img,
-audio,
video
height: auto
max-width: 100%
@@ -76,4 +75,5 @@ table
td,
th
padding: 0
- text-align: left
+ &:not([align])
+ text-align: inherit