Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecss
#header #edCustomappheader {
    background-color: rgb(0, 73, 176) !important;
}
 
.customTopNavigationLi  {
    color: black !important;
    list-style: none;
    font-weight: 100;
}
 
.customTopNavigationUl {
    display: inline-block;
    padding: 10px; 
    font-weight: 800;
    margin: 15px;
    margin-top: 5px;
}

.customTopNavigationA {
    color: black !important;
}

.customTopNavigationA:hover {
    background-color: rgba(224, 222, 223, 0.8) !important;
}
 
 
.customTopNavigationMenu:hover .customTopNavigationDropdown {
    display: block;
}
 
.customTopNavigationDropdown {
    display: none;
    padding: 10px;
    background: white;
    color: black;
    position: absolute;
    border: 1px solid grey;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

...