Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 456 | Autoría | Ultima modificación | Ver Log |

@import "../../styles/variables.scss";

.profile_item {
  width: 100%;
  padding: 25px 20px;
  border: 1px solid $border-primary;
  background-color: $bg-color;
  text-align: center;
  border-radius: 10px;
  position: relative;
 
  h3 {
    color: #16283c;
    font-size: 1.2rem;
    font-weight: 700;
  }

   h4 {
    color: $subtitle-color;
    font-weight: 600;
  }

  ul {
    display: flex;
    gap: 5px;
    justify-content: space-around;
  }

  hr {
    width: 90%;
    margin: 0.5rem auto;
  }

  &_header {
    align-items: center;
    display: flex;
    gap: 0.5rem;
    position: relative;

    img {
      height: 80px;
      width: 80px;
      border-radius: 50%;
    }

    &_info {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1;

      ul {
        margin-top: 0.5rem;
        display: flex;
        justify-content: space-around;
        align-self: center;
        gap: 0.5rem;
        flex: 1;
      }
    }
  }  
}