Blame view

frontend/web/css/_footer-style.scss 2.56 KB
b60a88b8   Anastasia   - main page
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
  .footer-menu {
  
    width: 100%;
    li {
      margin-top: 13px;
      float: left;
      width: 100%;
      a {
        font-size: 11px;
        text-transform: uppercase;
        font-weight: 700;
        color: $main-color;
      }
    }
    &.footer-menu-catalog {
      column-count: 2;
    }
  }
  
  .btn-footer-wr {
    margin-top: 61px;
    float: right;
    .btn_ {
      width: 206px;
    }
  }
  
  
  .seti-list {
    margin-top: 59px;
    float: right;
    li {
      float: left;
      margin-left: 20px;
      &:first-child {
        margin-left: 0;
      }
      a {
        display: table-cell;
        width: 48px;
        height: 48px;
        border: 1px solid $turquoise-color;
        border-radius: 100%;
        text-align: center;
        vertical-align: middle;
        background: #fff;
        img {
          max-width: 100%;
          max-height: 100%;
          vertical-align: middle;
          height: 22px;
        }
        &:hover {
          background: $turquoise-color;
        }
      }
    }
  }
  
  //.section-box-footer-columns {
  //  .col-xs-12 {
  //    display: table-cell;
  //    vertical-align: middle;
  //    height: 150px;
  //  }
  //}
  
  .section-box-footer-columns {
    padding-top: 42px;
  }
  
  .studio-wrapp {
    padding-top: 23px;
    padding-bottom: 23px;
    margin-top: 20px;
  }
  
  .studio-wrapp {
    font-size: 12px;
    color: #c6c6c6;
  }
  .all-rights-txt {
    float: left;
  }
  
  .link-studio {
    float: right;
  
  
    a {
      float: right;
      position: relative;
      color: inherit;
      padding-right: 36px;
      &:before {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        margin-top: -(23 / 2) +px;
        background: url("../images/artweb-logo.png") 50% 50% no-repeat;
        background-size: 24px 23px;
        width: 24px;
        height: 23px;
        display: block;
      }
    }
  }
  
  @media (max-width: 767px) {
    .btn-footer-wr {
      margin-top: 0;
      float: none;
      display: inline-block;
    }
    .section-box-footer-columns {
      padding-top: 30px;
      overflow: hidden;
    }
  
    .seti-list {
      margin-top: 0;
      width: 48px;
      padding-top: 18px;
      li {
        margin-left: 0;
        margin-top: 15px;
        &:first-child {
          margin-top: 0;
        }
      }
    }
  
    .link-studio {
      margin-top: 11px;
      width: 100%;
      background: #f6f6f6;
      height: 42px;
      text-align: center;
      padding-top: 11px;
      position: relative;
      &:before {
        width: 200%;
        height: 100%;
        position: absolute;
        left: -10px;
        top: 0;
        background: #f6f6f6;
        content: '';
      }
      a {
        float: none;
      }
    }
  
    .studio-wrapp {
      padding-bottom: 0;
      margin-top: -19px;
      padding-top: 0;
    }
    .all-rights-txt {
      max-width: 190px;
    }
  
  
  
  
  }