Blame view

web/css/style.scss 1.67 KB
9568083b   Alexey Boroda   -Backend left
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
  @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;
      }
    }
  
  
  }