mirror of
https://github.com/jgthms/bulma
synced 2026-03-22 13:04:29 -07:00
Clean up test folder structure
This commit is contained in:
2
test/ruby-sass/sass/bulma.sass
vendored
Normal file
2
test/ruby-sass/sass/bulma.sass
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
@charset "utf-8"
|
||||
@import "../../../bulma"
|
||||
4
test/ruby-sass/sass/css-variable.sass
Normal file
4
test/ruby-sass/sass/css-variable.sass
Normal file
@@ -0,0 +1,4 @@
|
||||
@charset "utf-8"
|
||||
$red: #f60
|
||||
$blue: var(--blue)
|
||||
@import "../../../bulma"
|
||||
37
test/ruby-sass/sass/customize.scss
Normal file
37
test/ruby-sass/sass/customize.scss
Normal file
@@ -0,0 +1,37 @@
|
||||
@charset "utf-8";
|
||||
|
||||
// Import a Google Font
|
||||
@import url('https://fonts.googleapis.com/css?family=Nunito:400,700');
|
||||
|
||||
// Set your brand colors
|
||||
$purple: #8A4D76;
|
||||
$pink: #FA7C91;
|
||||
$brown: #757763;
|
||||
$beige-light: #D0D1CD;
|
||||
$beige-lighter: #EFF0EB;
|
||||
|
||||
// Update Bulma's global variables
|
||||
$family-sans-serif: "Nunito", sans-serif;
|
||||
$grey-dark: $brown;
|
||||
$grey-light: $beige-light;
|
||||
$primary: $purple;
|
||||
$link: $pink;
|
||||
$widescreen-enabled: false;
|
||||
$fullhd-enabled: false;
|
||||
|
||||
// Update some of Bulma's component variables
|
||||
$body-background-color: $beige-lighter;
|
||||
$control-border-width: 2px;
|
||||
$input-border-color: transparent;
|
||||
$input-shadow: none;
|
||||
|
||||
// Import only what you need from Bulma
|
||||
@import "../../../sass/utilities/_all.sass";
|
||||
@import "../../../sass/base/_all.sass";
|
||||
@import "../../../sass/elements/button.sass";
|
||||
@import "../../../sass/elements/container.sass";
|
||||
@import "../../../sass/elements/title.sass";
|
||||
@import "../../../sass/form/_all.sass";
|
||||
@import "../../../sass/components/navbar.sass";
|
||||
@import "../../../sass/layout/hero.sass";
|
||||
@import "../../../sass/layout/section.sass";
|
||||
5
test/ruby-sass/sass/only-base.sass
Normal file
5
test/ruby-sass/sass/only-base.sass
Normal file
@@ -0,0 +1,5 @@
|
||||
@charset "utf-8"
|
||||
@import "../../../sass/utilities/_all"
|
||||
@import "../../../sass/base/_all"
|
||||
|
||||
|
||||
41
test/ruby-sass/sass/override.scss
Normal file
41
test/ruby-sass/sass/override.scss
Normal file
@@ -0,0 +1,41 @@
|
||||
@charset "utf-8";
|
||||
|
||||
// Import the variables
|
||||
@import "../../../sass/utilities/initial-variables.sass";
|
||||
|
||||
$blue: #00f;
|
||||
|
||||
$purple: #8A4D76;
|
||||
$pink: #FA7C91;
|
||||
$brown: #757763;
|
||||
$beige-light: #D0D1CD;
|
||||
$beige-lighter: #EFF0EB;
|
||||
|
||||
$grey-dark: $brown;
|
||||
$grey-light: $beige-light;
|
||||
$primary: $purple;
|
||||
$link: $pink;
|
||||
|
||||
$orange: #f60;
|
||||
$orange-invert: findColorInvert($orange);
|
||||
$orange-light: hsl(39, 100%, 92%);
|
||||
|
||||
$lavender: lavender;
|
||||
$lavender-invert: white;
|
||||
$lavender-light: hsl(240, 56%, 98%);
|
||||
$lavender-dark: hsl(240, 31%, 24%);
|
||||
|
||||
$custom-colors: (
|
||||
"lime": (lime),
|
||||
"tomato": (tomato, white),
|
||||
"orange": ($orange, $orange-invert, $orange-light),
|
||||
"lavender": ($lavender, $lavender-invert, $lavender-light, $lavender-dark)
|
||||
);
|
||||
|
||||
$spacing-shortcuts: ("margin": "mg");
|
||||
$spacing-horizontal: "h";
|
||||
$spacing-vertical: null;
|
||||
$spacing-values: ("small": 10px, "medium": 30px, "large": 60px);
|
||||
|
||||
// Import the rest of Bulma
|
||||
@import "../../../bulma";
|
||||
Reference in New Issue
Block a user