HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/demo/public_html/leakdetection/assets/scss/elements/_custom-menu.scss
.lqd-custom-menu {

  li {

    a {
      display: block;
    }
    &.is-active {

      a {
        color: var(--color-primary);
      }
    }
  }
  &.menu-items-have-fill {

    a {
      padding: 0.5em 1em;
    }
  }

  &[data-move-element] {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visiblity 0.3s;

    &.element-was-moved {
      opacity: 1;
      visibility: visible;
    }
  }
  &[class*=text-],
  &[class*=text-hover] {

    a {
      color: inherit;
    }
  }
  &.active-dark {

    li {

      &.is-active a {
        color: #000 !important;
      }
    }
  }
}
.lqd-sticky-menu {
  width: 100%;
  padding: 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #f6f6f6;

  &.on-top {
    bottom: auto;
    top: 0;
  }
}
.reset-ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.inline-nav {

	> li {
    display: inline-block;
    
    + li {
      margin-left: 15px;
    }
  }
  li {

    a {
      display: inline;
    }
  }
}
.comma-sep-li {

  > li {
    display: inline-block;

    &:not(:last-child):after {
      content: ',';
      margin-right: 0.25em;
    }
  }
}