Skip to content
Snippets Groups Projects

Make navbar title text bold white and bold orange on hover

Merged codecraft requested to merge white_nav_titles into master
All threads resolved!
1 file
+ 12
7
Compare changes
  • Side-by-side
  • Inline
+ 19
0
@import "../node_modules/bulma/sass/utilities/functions.sass";
@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);
@@ -61,6 +62,24 @@ $project-colors-title-fonts: (
@@ -61,6 +62,24 @@ $project-colors-title-fonts: (
background-color: $teckids-orange;
background-color: $teckids-orange;
}
}
 
.navbar-brand>a {
 
color: white;
 
font-weight: bold;
 
+1
}
 
 
@include desktop {
 
#main-navbar>*>*>*>a {
 
color: white;
 
font-weight: bold;
 
}
 
 
#main-navbar>*>*>*>a:hover {
 
color: $teckids-orange;
 
}
 
}
 
 
$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");
background-size:contain;
background-size:contain;
Loading