Changeset - dadee611a059
[Not reviewed]
0 1 0
Brett Smith - 4 years ago 2019-09-30 15:55:57
brettcsmith@brettcsmith.org
css: Navbar hover color is a function of the primary color.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
static/scss/custom.scss
Show inline comments
...
 
@@ -302,49 +302,49 @@ $homepage-block-smaller-min-height: 360px;
 
  background: $gray-base;
 
  color: white;
 
  //text-shadow: 1px 1px $gray-dark;
 

	
 
  a:not(.btn) {
 
    color: lighten($brand-primary, 20%);
 

	
 
    &:hover,
 
    &:focus,
 
    &:active {
 
      color: lighten($brand-primary, 15%);
 
    }
 
  }
 
}
 

	
 
.navbar {
 
  box-shadow: $box-shadow;
 
}
 

	
 
.navbar ul.navbar-nav > li > a,
 
.navbar-header a.navbar-brand {
 
  &:active,
 
  &:focus,
 
  &:hover {
 
    background-color: #004303;
 
      background-color: darken($navbar-default-bg, 15%);
 
  }
 
}
 

	
 
.tight-headings {
 

	
 
  h1, h2, h3, h4, h5, h6 {
 
    margin: 0.05em;
 
  }
 

	
 
}
 

	
 
.btn-shadow {
 
  box-shadow: 1px 1px 5px $gray-dark;
 
}
 

	
 
.hills {
 
  background-size: 100%;
 
  background-position: bottom;
 
  background-repeat: no-repeat;
 
  width: 50%;
 
  height: 100%;
 
  position: absolute;
 
  bottom: 0;
 
  right: 0;
0 comments (0 inline, 0 general)