45 lines
845 B
SCSS
45 lines
845 B
SCSS
@charset "utf-8";
|
|
|
|
// nordtheme.com
|
|
$red: #bf616a;
|
|
$yellow:#ebcb8b;
|
|
$orange:#d08770;
|
|
$purple:#b48ead;
|
|
$green:#a3be8c;
|
|
|
|
$dark:#2e3440;
|
|
$dark-bis:#3b4252;
|
|
$dark-ter:#434c5e;
|
|
$grey:#4c566a;
|
|
$grey-light:#d8dee9;
|
|
$grey-lighter:#e5e9f0;
|
|
$grey-lightest:#eceff4;
|
|
|
|
$nord7:#8fbcbb;
|
|
$nord8:#88c0d0;
|
|
$nord9:#81a1c1;
|
|
$nord10:#5e81ac;
|
|
// Color palette
|
|
$primary: $nord9;
|
|
$link: $nord10;
|
|
|
|
$body-background-color: $grey-lightest;
|
|
$navbar-background-color: $body-background-color;
|
|
// Notifications
|
|
$notification-padding: 0.8rem 2.5rem 0.8rem 1rem;
|
|
|
|
//$box-radius: 0 0 2rem 2rem;
|
|
|
|
/*
|
|
.navbar.is-spaced a.navbar-item.is-active {
|
|
border-bottom: 1px solid $dark;
|
|
border-radius: 0;
|
|
}
|
|
|
|
/*/
|
|
|
|
.hero.is-dark.is-bold {
|
|
background-image: linear-gradient(280deg, darken($dark, 10) 0%, $dark 71%, $dark-bis 100%) !important;
|
|
}
|
|
@import "./bulma-0.8.0/bulma.sass";
|