Blame view

frontend/web/css/_package.scss 1.15 KB
032b20f5   Виталий   modals write to
1
2
3
4
5
6
7
8
  .section-package-page {
    .service-text-table-wrapp {
      .btn_ {
        float: none;
        margin: 30px auto 0 auto;
      }
    }
  }
9b94956e   Виталий   blog/contacts/pac...
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
  
  .img-packages-page {
    background: #000;
    overflow: hidden;
    img {
      max-width: 100%;
      opacity: 0.5;
      @include Transition(0.3);
    }
  }
  
  .packages-page-col {
    text-align: center;
    margin-top: 40px;
  }
  
  .packages-page-link {
    display: inline-block;
    margin: 0 auto;
    width: 100%;
    max-width: 555px;
    position: relative;
    &:hover {
      .img-packages-page {
  
        img {
          @include Transition(0.6);
  
          opacity: 0.7;
        }
      }
    }
  }
  
  .table-packages-wr {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    table {
      width: 100%;
      height: 100%;
      color: #fff;
      tr {
        td {
          vertical-align: top;
          padding-top: 25px;
        }
        &:first-child {
          td {
            vertical-align: bottom;
            padding-bottom: 25px;
            padding-top: 0;
          }
        }
      }
    }
  }
  
  .packages-btn.btn_ {
    background: none !important;
    margin: 0 auto;
    float: none;
    width: 164px;
  }
  
  .title-packages {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
  }