Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3482 | Rev 3489 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

.btn-primary {
  background-color: #16283c;
  border-radius: 10px;
  color: #fff;
}
.btn-primary:hover {
  background-color: #1d315c;
}

.btn-secondary {
  background: rgba(0, 0, 0, 0);
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  color: #000;
}
.btn-secondary:hover {
  background-color: #909090;
  border-color: rgba(0, 0, 0, 0);
}

.btn-tertiary {
  background-color: #f4f4f4;
  border-color: #f4f4f4;
  color: #909090;
}
.btn-tertiary:hover {
  background: #d4d4d4;
  border: 1px solid #e8e8e8;
  color: #e8e8e8;
}

.navbar {
  display: flex;
  background-color: #fff;
  width: 100%;
  border-bottom: solid 1px #e8e8e8;
  padding: 1rem 1rem 0;
  gap: 0.5rem;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  height: auto;
  margin-bottom: 1rem;
  box-shadow: 0px 4px 14px -2px rgba(0, 0, 0, 0.12);
}
@media (max-width: 361px) {
  .navbar {
    padding: 1rem 1rem 0;
  }
}

.rightNavContainer {
  display: none;
  align-items: center;
  height: 100%;
}
@media (max-width: 361px) {
  .rightNavContainer {
    gap: 5px;
  }
  .rightNavContainer .btn {
    padding: 0 !important;
  }
  .rightNavContainer .btn .badge {
    font-size: 0.6rem;
  }
}

.logo {
  width: 30%;
  object-fit: contain;
  order: 1;
}

.hamburgerIcon {
  color: white;
  font-size: 1.5rem;
  order: 3;
}

.searchIcon {
  color: #16283c;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.5rem;
}

.mailIcon {
  color: #16283c;
  width: 25px;
  height: 25px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5rem;
}
@media (max-width: 361px) {
  .mailIcon {
    margin-right: 0rem;
  }
}

.bellIcon {
  color: #16283c;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  clip-path: circle(50%);
}
.bellIcon .badge {
  top: 25%;
}
@media (max-width: 361px) {
  .bellIcon {
    font-size: 1rem;
    width: 21px;
    height: 21px;
  }
}

.triangleDown {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid white;
  margin-left: 0.5rem;
}

.triangleUp {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid white;
  margin-left: 0.5rem;
}

.backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.205);
  z-index: 900;
}

.searchInputContainer {
  display: flex;
  font-size: 0.9rem;
  width: 50%;
  order: 2;
}
.searchInputContainer form {
  display: flex;
  align-items: center;
  width: 260px;
  height: 1.6rem;
  position: relative;
}
.searchInputContainer input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2rem;
  border-radius: 30px;
  background-color: #fff;
  color: #16283c;
  border: solid 1px #e8e8e8;
  height: 40px;
}
.searchInputContainer input::placeholder {
  color: #16283c;
}
.searchInputContainer button {
  font-size: 1.3rem;
  color: #16283c;
  border: none;
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 361px) {
  .searchInputContainer {
    max-width: 70%;
  }
}

.chatIcon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 0.2rem;
  position: relative;
}
.chatIcon_active::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  position: absolute;
  top: -1px;
  right: 1px;
}

@media (min-width: 1000px) {
  .chatIcon {
    display: none;
  }
}
@media (min-width: 1024px) {
  .navbar {
    height: 104px;
    padding: 0px 2rem;
    gap: 0;
  }
}
@media (min-width: 768px) {
  .logo {
    width: 130px;
  }
  .hamburgerIcon {
    display: none;
  }
  .searchInputContainer {
    width: 20%;
    order: 3;
  }
  .bellIcon {
    background-color: initial;
    color: #16283c;
  }
}

/*# sourceMappingURL=main.css.map */