Skip to content
Snippets Groups Projects
Commit 5f828670 authored by codecraft's avatar codecraft :crocodile:
Browse files

fix primary being broken because of bulma being prematurely loaded

parent b5c99f7a
No related branches found
No related tags found
1 merge request!41fix primary being broken because of bulma being prematurely loaded
...@@ -45,3 +45,31 @@ ...@@ -45,3 +45,31 @@
.navbar-dropdown { .navbar-dropdown {
overflow: hidden; overflow: hidden;
} }
#main-navbar {
background-color: $teckids-orange;
}
#main-navbar .navbar-brand > a {
color: white;
font-weight: bold;
}
@include desktop {
#main-menu > div > .navbar-item > a {
color: white;
font-weight: bold;
}
#main-menu > div > .navbar-item > a:hover {
color: $teckids-orange;
}
}
@media screen {
#navbar-logo > img {
filter: saturate(0) brightness(0) invert(1);
}
}
$navbar-burger-color: white;
@import "../node_modules/bulma/sass/utilities/functions.sass";
@import "../node_modules/bulma/bulma.sass";
$teckids-orange: #ff6600; $teckids-orange: #ff6600;
$teckids-orange-light: findLightColor($teckids-orange); $teckids-orange-light: findLightColor($teckids-orange);
$teckids-orange-light-half: lighten($teckids-orange, 30%); $teckids-orange-light-half: lighten($teckids-orange, 30%);
...@@ -58,33 +55,6 @@ $project-colors-title-fonts: ( ...@@ -58,33 +55,6 @@ $project-colors-title-fonts: (
background-color: $teckids-blue-light; background-color: $teckids-blue-light;
} }
#main-navbar {
background-color: $teckids-orange;
}
#main-navbar .navbar-brand > a {
color: white;
font-weight: bold;
}
@include desktop {
#main-menu > div > .navbar-item > a {
color: white;
font-weight: bold;
}
#main-menu > div > .navbar-item > a:hover {
color: $teckids-orange;
}
}
@media screen {
#navbar-logo > img {
filter: saturate(0) brightness(0) invert(1);
}
}
$navbar-burger-color: white;
.circle-bg { .circle-bg {
background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' %3E%3Ccircle cx='300' cy='300' r='300' fill='rgba(100%25 %2C 100%25 %2C 100%25 %2C 0.5)' /%3E%3C/svg%3E"); background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' %3E%3Ccircle cx='300' cy='300' r='300' fill='rgba(100%25 %2C 100%25 %2C 100%25 %2C 0.5)' /%3E%3C/svg%3E");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment