Skip to content
Snippets Groups Projects
main.scss 1.35 KiB
@import 'scss/fonts';
@import 'scss/base/text';
@import 'scss/layout/components';

.nav-link-entry {
  border-radius: 2px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #b0cde1;
  padding: 10px;
}

.nav-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  height: 60px;

  .nav-link-entry:hover {
    color: #003753;
    background-color: #b0cde1;
  }

  ul {
    line-height: 1.3;
    text-transform: uppercase;
    list-style: none;

    li {
      float: left;


    }
  }
}

.nav-wrapper {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  height: 60px;
}

.header-nav {
  width: 100%;

  img {
    float: left;
    margin-right: 15px;
  }

  ul {
    line-height: 1.3;
    text-transform: uppercase;
    list-style: none;

    li {
      float: left;

      a {
        border-radius: 2px;
        float: left;
        font-family: "Open Sans", sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        color: #b0cde1;
        padding: 10px;
      }

      a:hover {
        color: #003753;
        background-color: #b0cde1;
      }
    }
  }
}

.external-page-nav-bar {
  background-color: #003753;
  color: #b0cde1;
  height: 60px;
}

.app {
  // display: flex;
  flex-direction: column;
  min-height: 100vh;
}