Blame view

frontend/themes/markup/src/scss/custom/_inner-pages.scss 776 Bytes
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
  .page-contact-info .site_address, .page-contact-info .site_email {
    min-height: 38px;
  }
  .sidebar-address, .sidebar-social{
    @media screen and (max-width: 992px) {
      height: auto;
      margin-top:0;
      padding: 10px;
    }
  }
  .info-popup{
    position: fixed;
    z-index: 1000;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 300px;
    padding: 3px;
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#def2f6),to(#fff8ca));
    background-image: linear-gradient(#def2f6,#fff8ca);
    .popup-info-container{
      background: #fff;
      padding: 30px 20px 20px 20px;
      position: relative;
      text-align: center;
      color: #2572a6;
    }
    .popup-info-title{
      font-size: 18px;
      margin: 20px 0;
    }
    .popup-info-notice{
      margin: 20px 0 30px 0;
    }
  }