Blame view

frontend/web/css/_footer-style.scss 1.31 KB
c420c609   alex   first commit
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
  .studio_footer {

    background: #333333;

    color: #979797;

  }

  .copyright {

    width: 100%;

    height: 60px;

    font-size: 12px;

    display: table-cell;

    vertical-align: middle;

  }

  .artweb-wr {

    width: 100%;

    float: right;

    height: 60px;

    position: relative;

    a {

      height: 60px;

      line-height: 60px;

      font-size: 12px;

      float: right;

      margin-right: 36px;

      color: inherit;

    }

  }

  .artweb-img {

    width: 24px;

    height: 24px;

    position: absolute;

    right: 0;

    top: 50%;

    margin-top: -12px;

    cursor: default;

    a {

      color: inherit;

      margin: 0;

      padding: 0;

      width: 24px;

      height: 23px;

      display: block;

      div {

        width: 24px;

        height: 23px;

        position: relative;

        color: inherit;

        &:before {

          @include svgIcon;

          color: inherit;

          font-size: 24px;

          content: '\e911';

          position: absolute;

          top: 0;

          left: 0;

        }

      }

    }

  }

  

  @media (max-width: 767px) {

    .artweb-wr {

      width: 135px;

      margin: 0 auto;

      float: none;

      height: 40px;

      a {

  

        height: 40px;

        line-height: 40px;

      }

    }

    .artweb-img {

      top: 0;

      margin-top: 0;

      a {

        div {

          &:before {

            line-height: 40px;

  

          }

        }

      }

    }

  }