Blame view

frontend/web/css/_footer-style.scss 2.19 KB
bc9815fa   Anastasia   layout
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
  .studio_footer {
    background: #333333;
    color: #a3a4a4;
    padding-top: 35px;
    padding-bottom: 31px;
  }
  
  .footer-menu-col {
    ul {
      li {
        float: left;
        margin-left: 20px;
        &:first-child {
          margin-left: 0;
        }
        a {
          color: #e0e2e4;
          font-size: 14px;
          font-weight: 700;
          display: block;
          line-height: 20px;
        }
      }
    }
  }
  
  .footer-txt {
    span {
      font-weight: 700;
      line-height: 19px;
    }
  }
  .seti-wrapp {
    float: right;
  }
  .seti-txt {
    font-size: 12px;
    color: #a3a4a4;
    margin-bottom: 2px;
    margin-top: 5px;
    clear: both;
  }
  
  .seti-list {
      ul {
        li {
          margin-left: 16px;
          margin-top: 16px;
          float: left;
          &:first-child {
            margin-left: 0;
          }
          a {
            display: table-cell;
            vertical-align: middle;
            border: 1px solid #f3f4f5;
            width: 48px;
            height: 48px;
            color: #fff;
            border-radius: 100%;
            text-align: center;
            img {
              max-width: 100%;
              vertical-align: middle;
            }
          }
        }
      }
  }
  
  .row-footer-txt {
    margin-top: 53px;
  }
  
  .copyright {
    font-size: 12px;
    float: left;
    margin-top: -12px;
    i {
      font-style: normal;
    }
  }
  
  @media (max-width: 991px) {
    .footer-menu-col ul li a {
      font-size: 13px;
    }
  }
  
  @media (max-width: 767px) {
    .footer-menu-col {
      ul {
        li {
          margin-top: 10px;
          margin-left: 0;
          width: 100%;
          text-align: center;
          &:first-child {
            margin-top: 0;
          }
          a {
            font-size: 14px;
          }
        }
      }
    }
  
  .seti-wrapp {
    width: 100%;
    text-align: center;
  }
  
    .seti-list {
      display: inline-block;
      ul {
        li {
          margin-left: 12px;
          a {
            width: 46px;
            height: 46px;
          }
        }
      }
    }
  
    .footer-txt {
      text-align: center;
      margin-top: 32px;
    }
  
    .copyright {
      margin-top: 32px;
      text-align: center;
      width: 100%;
      i {
        display: inline-block !important;
      }
    }
  
    .seti-txt {
      margin-top: 0;
    }
    .row-footer-txt {
      margin-top: 27px;
    }
    .studio_footer {
        padding-bottom: 38px;
    }
  }