Ontica/Empiria.Land.Intranet

View on GitHub
src/app/main-layout/main-menu-left/main-menu-left.component.scss

Summary

Maintainability
Test Coverage
/**
 * @license
 * Copyright (c) La Vía Óntica SC, Ontica LLC and contributors. All rights reserved.
 *
 * See LICENSE.txt in the project root for complete license information.
 */

@import '../../../styles/variables';

.menu-left {
  width: 75vw;
  font-size: 1rem;

  ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  li {
    color: $secondary-color-light;
    white-space: nowrap;

    a,
    a:visited {
      color: $secondary-color-semi-light;
      font-weight: 400;
      text-decoration: none;
    }

    &:hover a {
      color: $primary-color;
      font-weight: 500;
    }

    &.selected a {
      color: $primary-color;
      font-weight: 600;
    }

  }

  .menu-layout {
    display: flex;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
  }

  .menu-view {
    display: flex;
    font-size: 0.8rem;
    padding: 0.5rem 1.5rem;
  }

}