Blame view

public/css/blocks/modals/cookie-popup.css 1.69 KB
b80175387   Андрей Ларионов   Начальный проект ...
1
2
3
4
5
6
7
8
9
10
11
12
13
  .cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url("../img/main/cookies-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 101;
    max-height: 64px;
    height: 100%;
    display: none;
  }
2f5f2c1a4   Андрей Ларионов   Баг с версткой ка...
14
15
16
17
18
19
20
21
22
23
  .cookie-popup__close-mob {
    margin-bottom: 25px;
    margin-right: 10px;
    display: inline-block;
  }
  @media (min-width: 780px) {
    .cookie-popup__close-mob {
      display: none;
    }
  }
b80175387   Андрей Ларионов   Начальный проект ...
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  
  .cookie-popup-wrapper {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cookie-popup-wrapper__text {
2f5f2c1a4   Андрей Ларионов   Баг с версткой ка...
38
39
40
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
b80175387   Андрей Ларионов   Начальный проект ...
41
    color: #E7EAEE;
2f5f2c1a4   Андрей Ларионов   Баг с версткой ка...
42
43
44
45
46
47
48
49
50
51
52
53
54
    margin-right: 0px;
    text-align: center;
    padding: 0 15px;
  }
  @media (min-width: 780px) {
    .cookie-popup-wrapper__text {
      text-align: left;
      font-weight: 700;
      font-size: 12px;
      line-height: 14px;
      padding: 0;
      margin-right: 22px;
    }
b80175387   Андрей Ларионов   Начальный проект ...
55
56
57
58
59
60
61
62
63
64
65
66
67
  }
  .cookie-popup-wrapper__btn {
    background: #F5851A;
    border-radius: 9.375px;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    border: 1px solid #F5851A;
    cursor: pointer;
    padding: 13px 30px;
2f5f2c1a4   Андрей Ларионов   Баг с версткой ка...
68
    display: none;
b80175387   Андрей Ларионов   Начальный проект ...
69
70
71
72
73
74
75
76
77
78
79
  }
  .cookie-popup-wrapper__btn:hover {
    border: 1px solid #F2994A;
    background-color: #FFFFFF;
    color: #F2994A;
    border-radius: 9.375px;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.01em;
2f5f2c1a4   Андрей Ларионов   Баг с версткой ка...
80
81
82
83
84
  }
  @media (min-width: 780px) {
    .cookie-popup-wrapper__btn {
      display: inline-block;
    }
b80175387   Андрей Ларионов   Начальный проект ...
85
  }