Blame view

frontend/web/css/_footer.scss 865 Bytes
8f340aa7   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
  .section-box-footer {
    background: #2f2f2f;
    color: #fff;
    padding: 31px 0;
    margin-top: 60px;
  }
  
  .footer-menu {
    li {
      float: left;
      a {
        color: inherit;
        text-transform: uppercase;
        padding-left: 24px;
        padding-right: 24px;
        font-weight: 700;
      }
      &:first-child {
        a {
          padding-left: 0;
        }
      }
    }
  }
  
  .footer-btn {
    position: absolute;
    width: 25%;
    height: 42px;
    top: 50%;
    margin-top: -21px;
    right: 0;
    padding-left: 15px;
  }
  
  @media (max-width: 991px) {
    .footer-btn {
      width: 172px;
      right: 15px;
      padding-left: 0;
    }
    .section-box-footer {
     .footer-btn {
       position: relative;
       margin: 0;
       top: auto;
       right: auto;
       width: 100%;
       float: left;
       .btn_ {
         float: none;
         margin: 0 auto;
       }
     }
      nav {
        display: none;
      }
    }
  }