Versions Compared

Key

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

...

Code Block
languagecss
#header #edCustomappheader {}

.customTopNavigationLi  {
    color: black;
    list-style: none;
    font-weight: 100;
}

.customTopNavigationUl {
    display: inline-block;
    padding: 10px; 
    font-weight: 800;
    margin: 15px;
    margin-top: 5px;
}


.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;
}

Image Added

Code Block
languagecss
#header #edCustomappheader {}

.customTopNavigationA {
    text-decoration-color: rgb(51, 51, 51) !important;
    color: black !important;
    background-color: transparent; text-decoration: none; 
}

.customTopNavigationLi  {
    list-style-type: none;
    font-weight: 200;
    border-bottom: 0;
    background: #f5f5f5;
}

.customTopNavigationLi:hover  {
     list-style-type: none;
     font-weight: 200;
     border-bottom: 2px solid #d22321;
     background: lightgrey;
}

.customTopNavigationUlText {
    border-bottom: 3px solid black;
    margin-bottom: 8px;
}


.customTopNavigationUl {
    display: inline-block;
      font-weight: 700;
}


.customTopNavigationMenu:hover .customTopNavigationDropdown {
    display: block;
}

.customTopNavigationDropdown {
    display: none;
    padding: 10px;
    color: black;
    position: absolute;
    border: 0;
    background: #f5f5f5;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    width: auto;
    overflow-x: auto;
    box-shadow: 0 1px 5px rgb(0 0 0 / 15%);
}

...