Blame view

frontend/web/css/_cookie.scss 693 Bytes
bc81112d   Виталий   cookies form
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
  .cookie-modal {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: $orange-color;
    color: #fff;
    padding: 7px 0;
    text-align: center;
    z-index: 8;
  
    a {
      color: inherit;
      text-decoration: underline;
      &:hover {
        text-decoration: none;
  
      }
    }
    p {
      padding: 0 18px;
    }
  }
  
  
  .cokeis-close {
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: pointer;
    top: -12px;
    right: 4px;
    &:before {
      @include svgIcon;
      line-height: 40px;
      text-align: center;
      font-size: 16px;
      content: "\e90c";
  
      color: #fff;
    }
    &:active {
      &:before {
        font-size: 18px;
      }
    }
  }
  
  .hide-bl {
    bottom:-100%;
    transition: 2s;
  }