_structure.scss 1.3 KB
// Structure
html {
  font-size: 62.5% !important;
  // font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'themix'
}

// Body
body {

  background: #E4EDF4;
  font-family:  'TheMixPlain', sans-serif;
  overflow-x: hidden;

}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}


.body__whiteBg{
  background:white;
  @include rem('margin', 0, 0, 45 , 0);
  @include bp-large {
    @include rem('margin', 0, 0, 135 , 0);
  }
}

// Font
 $font__body: 'themix', sans-serif;

// skeleton
#wrap {
  display: block;
  overflow: hidden;
  @extend .row-f;
}

.row-f {
   @include clearfix;
}

.inner {
   &.space {
    padding-left: gutter();
    padding-right: gutter();
    @include bp-medium {

    }
  }
}

.profilation__container {
  @include bp-large {

  }

  min-height: calc(100vh - 200px);
}

.bigContainer {
   @include clearfix;

  height: 72px;
  display: flex;
  align-items: center;
  background: white;

  box-sizing:border-box;
  @include bp-large {
    height:96px;
  }
  &.space {

    @include bp-medium {

    }
  }
}

.inside {

  @include bp-medium {

  }
}

// Animation
.anima {
  @include transition(all, 0.2s, ease-in);
}

.ToastContainer{
    font-size: 2em;
}