_language.scss 1010 Bytes
.language-box{
    padding-bottom: 6px;
    >a{
      background-color: rgba(207, 207, 207, 0.3);
      margin-top: 5px;
      color: white;
    }
    .language-option{
      display: none;
      position: absolute;
      padding: 0;
      margin: 2px 0 0;
      width: 100px;
      z-index: 105;
      li:first-of-type{
        border-top-left-radius: 2px;
        border-top-right-radius: 2px;
      }
      li:last-of-type{
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
      }
      li{
        list-style-type: none;
        background-color: white;
        height: 35px;
        line-height: 35px;
        a{
          text-decoration: none;
          padding: 3px;
          color: $font-opa;
        }
      }
      li:hover{
        background-color: rgb(241, 241, 241);
      }
      .active{
        background-color: $blue-s;
      }
      .active:hover{
        background-color: rgb(241, 241, 241);
        a{
          color: white;
        }
      }
    }
  }