Blame view

frontend/themes/markup/src/scss/custom/_popups.scss 2.17 KB
d1f8bd40   Alexey Boroda   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
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
  .overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    z-index: 95;
    background: #559dbf;
    opacity: .65;
  }
  .close-popup, .close-filter{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    border-radius: 50%;
    background: url("../img/close-ico.png") center no-repeat transparent;
    &:hover{
      background: url("../img/close-ico.png") center no-repeat #ddf5f8;
    }
    &:active{
      background: url("../img/close-ico.png") center no-repeat #ddf5f8;
  
    }
  }
  .popup{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 365px;
    z-index: 99;
    background: #fff;
    display: none;
    .popup-container{
      background: #fff;
      padding: 20px 80px 50px 30px;
      position: relative;
    }
  
    .registration-popup-link, .authorization-popup-link{
      color: #ffc971;
      position: relative;
      display: inline-block;
      padding: 10px 10px 10px 40px;
      font-size: 16px;
      border: none;
      background: transparent;
      &:before{
        width: 30px;
        height: 30px;
        position: absolute;
        top: 0;
        left: 0;
        content: "";
      }
    }
    .registration-popup-link:before{
      background: url("../img/registration-ico.png") center no-repeat;
    }
    .authorization-popup-link:before{
      background: url("../img/enter-ico.png") center no-repeat;
      top: 5px;
    }
  
    label{
      font-weight: 400;
    }
    .forgot-pasword-link{
      color: #ffc971;
      margin-left: 30px;
    }
    &.mobile-menu{
      right: -15px;
      width: 250px;
      min-height: 100vh;
      .flex-wrap{
        min-height: 83vh;
        display: flex;
        flex-direction: column;
      }
      .language{
        margin-bottom: 15%;
      }
      .popup-container{
        flex: 1 1 100%;
        padding: 20px 40px 20px 10px;
      }
      .mobile-menu-footer{
        padding: 10px 40px 0 5px;
      }
    }
  }
  .form-tittle{
    color: #95d7e0;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 20px 0;
   }
  .authorization-popup{
    .btn-default{
      width: 80%;
      margin-top: 30px;
    }
  }
  .authorization-form, .registration-form{
    margin-top: 20px;
  }
  a.open-popup{
    border: none;
    background: transparent;
  }