2024-05-18 18:20:37 +02:00
|
|
|
// Set your brand colors
|
|
|
|
|
$custom-primary: #abc7ff;
|
|
|
|
|
$custom-link: #edb1ff;
|
|
|
|
|
$custom-info: #6715ef;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Path to Bulma's sass folder
|
|
|
|
|
@use "sass" with (
|
|
|
|
|
$primary: $custom-primary,
|
|
|
|
|
$info: $custom-info,
|
|
|
|
|
$link: $custom-link,
|
|
|
|
|
);
|
|
|
|
|
|
2024-05-29 16:14:34 +02:00
|
|
|
body::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
|
|
/* for Chrome, Safari, and Opera */
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-01 18:19:04 +02:00
|
|
|
.image img {
|
|
|
|
|
display: block;
|
|
|
|
|
height: auto;
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-18 18:20:37 +02:00
|
|
|
// Import the Google Font
|
|
|
|
|
@import url("https://fonts.googleapis.com/css?family=Nunito:400,700");
|