40 lines
1.4 KiB
SCSS
40 lines
1.4 KiB
SCSS
/*
|
|
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
* listed below.
|
|
*
|
|
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
|
|
* vendor/assets/stylesheets directory can be referenced here using a relative path.
|
|
*
|
|
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
|
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
|
|
* files in this directory. Styles in this file should be added after the last require_* statement.
|
|
* It is generally better to create a new file per style scope.
|
|
*
|
|
*= require_tree .
|
|
*= require_self
|
|
*/
|
|
@import "bulma/sass/utilities/initial-variables";
|
|
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Lobster&family=Comfortaa:wght@400;500;600;700&display=swap');
|
|
|
|
$family-sans-serif: 'Roboto', sans-serif;
|
|
$family-secondary: 'Comfortaa', cursive;
|
|
// // https://coolors.co/06aed5-086788-f0c808-fff1d0-dd1c1a
|
|
// $blue: #083d77;
|
|
// $red: #dd1c1a;
|
|
// $orange: #ee964b;
|
|
// $yellow: #f4d35e;
|
|
// $light: #f5fafe; // #ebebd3;
|
|
// $primary: $blue;
|
|
// $green: #007932; // hsl(141, 53%, 53%);
|
|
// $footer-background-color: $light;
|
|
|
|
@import 'bulma/bulma';
|
|
|
|
.is-font-logo {
|
|
font-family: 'Lobster', cursive;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
}
|
|
@import 'bulma-helpers/bulma-helpers'; |