-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c4e7af
commit 4df2e1e
Showing
32 changed files
with
217 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/* Bulma Base */ | ||
@charset "utf-8" | ||
|
||
@import "minireset.sass" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,7 @@ section | |
body, | ||
button, | ||
input, | ||
optgroup, | ||
select, | ||
textarea | ||
font-family: $body-family | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/* Bulma Components */ | ||
@charset "utf-8" | ||
|
||
@import "breadcrumb.sass" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/* Bulma Elements */ | ||
@charset "utf-8" | ||
|
||
@import "box.sass" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,27 @@ | ||
$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 | ||
max-width: none !important | ||
padding-left: $gap | ||
padding-right: $gap | ||
width: 100% | ||
+desktop | ||
max-width: $desktop - $container-offset | ||
+until-widescreen | ||
&.is-widescreen | ||
max-width: $widescreen - $container-offset | ||
&.is-widescreen:not(.is-max-desktop) | ||
max-width: min($widescreen, $container-max-width) - $container-offset | ||
+until-fullhd | ||
&.is-fullhd | ||
max-width: $fullhd - $container-offset | ||
&.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen) | ||
max-width: min($fullhd, $container-max-width) - $container-offset | ||
+widescreen | ||
max-width: $widescreen - $container-offset | ||
&:not(.is-max-desktop) | ||
max-width: min($widescreen, $container-max-width) - $container-offset | ||
+fullhd | ||
max-width: $fullhd - $container-offset | ||
&:not(.is-max-desktop):not(.is-max-widescreen) | ||
max-width: min($fullhd, $container-max-width) - $container-offset |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/* Bulma Form */ | ||
@charset "utf-8" | ||
|
||
@import "shared.sass" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/* Bulma Grid */ | ||
@charset "utf-8" | ||
|
||
@import "columns.sass" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
$flex-direction-values: row, row-reverse, column, column-reverse | ||
@each $value in $flex-direction-values | ||
.is-flex-direction-#{$value} | ||
flex-direction: $value !important | ||
|
||
$flex-wrap-values: nowrap, wrap, wrap-reverse | ||
@each $value in $flex-wrap-values | ||
.is-flex-wrap-#{$value} | ||
flex-wrap: $value !important | ||
|
||
$justify-content-values: flex-start, flex-end, center, space-between, space-around, space-evenly, start, end, left, right | ||
@each $value in $justify-content-values | ||
.is-justify-content-#{$value} | ||
justify-content: $value !important | ||
|
||
$align-content-values: flex-start, flex-end, center, space-between, space-around, space-evenly, stretch, start, end, baseline | ||
@each $value in $align-content-values | ||
.is-align-content-#{$value} | ||
align-content: $value !important | ||
|
||
$align-items-values: stretch, flex-start, flex-end, center, baseline, start, end, self-start, self-end | ||
@each $value in $align-items-values | ||
.is-align-items-#{$value} | ||
align-items: $value !important | ||
|
||
$align-self-values: auto, flex-start, flex-end, center, baseline, stretch | ||
@each $value in $align-self-values | ||
.is-align-self-#{$value} | ||
align-self: $value !important | ||
|
||
$flex-operators: grow, shrink | ||
@each $operator in $flex-operators | ||
@for $i from 0 through 5 | ||
.is-flex-#{$operator}-#{$i} | ||
flex-#{$operator}: $i !important |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/* Bulma Layout */ | ||
@charset "utf-8" | ||
|
||
@import "hero.sass" | ||
|
Oops, something went wrong.