limepot-xyz/mybulma/sass/mystyles.scss

61 lines
1.8 KiB
SCSS
Raw Normal View History

@charset "utf-8";
// Import a Google Font
@import url('https://fonts.googleapis.com/css?family=Nunito:400,700');
// Set your brand colors
$lime:#00fdbe;
$purple: #a45e8d;
2023-01-27 17:51:02 -07:00
$trans-pink: #F5A9B8;
$beige-light: #eaeaea;
2023-01-27 17:29:36 -07:00
$off-dark: #181516;
2023-01-27 17:38:20 -07:00
$off-off-dark: #070707;
2023-01-27 17:47:45 -07:00
$off-off-off-dark: #111111;
2023-01-27 17:51:02 -07:00
$trans-blue: #5bcefa;
2023-01-27 18:08:32 -07:00
$greyish: #1d1d1d;
// Update Bulma's global variables
$family-sans-serif: "Nunito", sans-serif;
$grey-dark: $purple;
$grey-light: $beige-light;
$primary: $lime;
2023-01-27 17:51:02 -07:00
$link: $trans-pink;
$widescreen-enabled: false;
$fullhd-enabled: false;
// Update some of Bulma's component variables
2023-01-27 18:08:32 -07:00
$body-background-color: $greyish;
$control-border-width: 2px;
$input-border-color: transparent;
$input-shadow: none;
//my shit
2023-01-27 17:40:41 -07:00
$title-color: $lime;
2023-01-27 17:51:02 -07:00
$input-color: $trans-pink;
2023-01-27 17:29:36 -07:00
$primary: $lime;
2023-01-27 17:51:02 -07:00
$text-strong: $trans-pink;
/////navbar
2023-01-27 17:57:48 -07:00
$navbar-background-color: $off-dark;
$navbar-item-color: $trans-pink;
2023-01-27 17:51:02 -07:00
$navbar-item-hover-background-color: $off-off-dark;
2023-01-27 18:08:32 -07:00
$navbar-dropdown-background-color: $off-off-off-dark;
$navbar-dropdown-item-hover-color: $trans-blue;
$navbar-dropdown-item-hover-background-color: $off-dark;
$navbar-divider-background-color: $greyish;
2023-01-27 17:51:02 -07:00
//$navbar-dropdown-item-active-color: $off-off-off-dark;
2023-01-27 17:56:43 -07:00
//$navbar-dropdown-item-active-background-color: $off-off-dark;
2023-03-11 21:49:38 -07:00
//footer
$footer-padding: 3rem 1.5rem 6rem;
// Import only what you need from Bulma
@import "../node_modules/bulma/sass/utilities/_all.sass";
@import "../node_modules/bulma/sass/base/_all.sass";
@import "../node_modules/bulma/sass/elements/button.sass";
@import "../node_modules/bulma/sass/elements/container.sass";
@import "../node_modules/bulma/sass/elements/title.sass";
@import "../node_modules/bulma/sass/form/_all.sass";
@import "../node_modules/bulma/sass/components/navbar.sass";
@import "../node_modules/bulma/sass/layout/hero.sass";
@import "../node_modules/bulma/sass/layout/section.sass";