style.scss 1.67 KB
@import "reset";
@import "mixin";

$bodySizeText:13px;

$link-color:#0b92d2;
$link-active: #0b7ab4;

$main-color: #333333;

$blocks-color:#6db51b;
$blocks-color-hover:#63a518;
$blocks-color-active: #519318;


html {
  //overflow: hidden;
  height: 100%;
}
body {
  background: #fff;
  font-family: Ubuntu;
  font-size: $bodySizeText;
  color: $main-color;
  line-height: 16px;
  height: 100%;
  min-height: 320px;
  min-width: 320px;
}


a {
  color: $link-color;
  outline: none !important;
  &:hover {
    text-decoration: underline;
  }
  &:active {
    color: $link-active;
  }
}

.style {
  width: 100%;
  float: left;
}
[class*="section-box"], section, footer, header {
  @extend .style;
  position:relative;
  z-index: 2;
}
section, header, nav, article, aside, footer, address { display: block; }
.container {
  //min-width:330px;
  min-width: 303px;
}

@import "index";


.modal-link {
  cursor: pointer;
}



.empty {
  color: #707376;
  font-size: 16px;
  padding: 0 15px;
}

.empty-15 {
  .empty {
    padding-left: 15px;
  }
}

.section-box-content {
  overflow: hidden;
}

























@media (max-width: 1200px) {

}

@media (max-width: 991px) {

}


@media (max-width: 850px) {

}

@media (max-width: 768px) {

}
@media (max-width: 767px) {
  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .row {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  [class*="col-xs-"], [class*="col-sm-"], [class*="col-md-"], [class*="col-lg-"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
    &.items_wr_full {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
  }


}