Untitled

 avatar
unknown
plain_text
2 years ago
2.6 kB
5
Indexable
.ws-big-wrapper {
  display: flex;
  flex: 1;
  justify-content: center;

  @media screen and (max-width: $screen-xs-max) {
    width: 50px;
    margin-left: 40%;
  }

  @media screen and (min-width: $screen-sm-min) and (max-width: $screen-sm-max) {
    width: 90%;
  }
}

.ws-wrapper {
  display: flex;
  flex-direction: column;
  margin: 10px;
  min-height: 500px;
  width: 90%;
  @media screen and (max-width: $screen-xs-max) {
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    margin: 8px;
    width: 100%;
    justify-content: center;
    min-height: 0%;
  }

  @media screen and (min-width: $screen-sm-min) and (max-width: $screen-sm-max) {
    margin: 5px;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.ws-row {
  display: flex;
  justify-content: center;
  align-items: center;
  @media screen and (max-width: $screen-xs) {
    display: flow-root;
  }

  @media screen and (max-width: $screen-sm) and (min-width: $screen-sm) {
    width: 70%;
    margin-left: 10%;
  }

  @media screen and (max-width: $screen-s) {
    display: flow-root;
  }
}

.ws-column-display {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;

  @media screen and (max-width: $screen-xs) {
    display: flow-root;
  }
}
.ws-image-wrapper {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
  align-items: center;

  @media screen and (max-width: $screen-xs-max) {
    margin-bottom: 4%;
    flex: 0.7 0.7 auto;
  }
  .ws-general-data-img {
    width: 128px;
    height: 128px;
    border: 2px solid #ccc;
    overflow: hidden;
    @media screen and (max-width: $screen-xs-max) {
      width: 70%;
      height: 70%;
    }
  }
}

.ws-item-wrapper {
  display: flex;
  flex: 1;
  margin-top: 100px;
  justify-content: center;
  text-align: center;
  max-height: 80px;
  min-height: 100px;
  align-items: center;
  height: 80px;

  .ws-item-sessions {
    color: orange;
    font-weight: bold;
    font-size: 3rem;
    min-height: 100px;
    max-height: 100px;
    flex: 1;
    margin-bottom: 50px;
    @media screen and (max-width: $screen-xs-max) {
      font-size: 2rem;
      margin-bottom: 3%;
    }

    @media screen and (max-width: $screen-sm) and (min-width: $screen-sm) {
      font-size: 2.1rem;
    }
  }
  .ws-item-message {
    color: gray;
    font-weight: 400;
    font-size: 2rem;
    @media screen and (max-width: $screen-xs-max) {
      font-size: 2rem;
    }
  }

  .ws-item-bottom-message {
    color: gray;
    font-weight: 400;
    font-size: 2rem;
    @media screen and (max-width: $screen-xs-max) {
      font-size: 1.5rem;
    }
  }
}
Editor is loading...