Blame view

frontend/web/css/custom.css 3.36 KB
298bc0f4   Alexey Boroda   first commit
1
  /* your styles go here */
c3e7999e   Виталий   header + gallery ...
2
3
4
5
6
  #footer {
    padding: 20px 0; }
  
  #get-it {
    padding: 30px 0 10px; }
298bc0f4   Alexey Boroda   first commit
7
8
  
  figure.reviews_gallery {
c3e7999e   Виталий   header + gallery ...
9
10
11
12
    width: 33.333%;
    float: left;
    padding: 10px; }
  
298bc0f4   Alexey Boroda   first commit
13
  .reviews_gallery img {
c3e7999e   Виталий   header + gallery ...
14
15
16
17
18
19
20
21
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; }
  
  .reviews_gallery:last-child img {
    margin-bottom: 60px; }
  
faf242dc   Виталий   header + gallery ...
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  .gallery_txt {
    margin-bottom: 30px; }
    .gallery_txt a {
      height: auto !important;
      padding-bottom: 0 !important; }
    .gallery_txt .image_figcapture {
      color: #333;
      margin-bottom: 5px; }
    .gallery_txt img {
      position: relative;
      max-width: 100%;
      width: 360px;
      top: auto;
      height: auto; }
    .gallery_txt:nth-child(3n + 4) {
      clear: both; }
c3e7999e   Виталий   header + gallery ...
38
39
40
41
  
  .my-gallery {
    position: relative; }
  
298bc0f4   Alexey Boroda   first commit
42
  .my-gallery:after {
c3e7999e   Виталий   header + gallery ...
43
44
45
46
47
48
    content: '';
    display: block;
    position: relative;
    clear: both;
    margin-bottom: 25px; }
  
298bc0f4   Alexey Boroda   first commit
49
  .my-gallery a {
c3e7999e   Виталий   header + gallery ...
50
51
52
53
54
55
56
    width: 100%;
    overflow: hidden;
    display: block;
    height: 0;
    padding-bottom: 60%;
    position: relative; }
  
298bc0f4   Alexey Boroda   first commit
57
  .testimonials .item .testimonial .name-picture {
c3e7999e   Виталий   header + gallery ...
58
59
60
61
    float: right;
    width: 90%;
    text-align: right; }
  
298bc0f4   Alexey Boroda   first commit
62
  .testimonials .item .testimonial .bottom .icon {
c3e7999e   Виталий   header + gallery ...
63
64
65
66
67
68
69
70
71
72
    color: #6aae7a;
    font-size: 20px;
    float: left;
    width: 10%; }
  
  .testimonials .item .testimonial .name-picture img {
    margin-bottom: 10px; }
  
  @media (max-width: 690px) {
    figure.reviews_gallery {
af161ef8   Виталий   header + gallery ...
73
74
75
76
77
78
      width: 50%; }
  
    figure.gallery_txt:nth-child(3n + 4) {
      clear: none; }
    figure.gallery_txt:nth-child(2n + 3) {
      clear: both; } }
c3e7999e   Виталий   header + gallery ...
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
  @media (max-width: 380px) {
    figure.reviews_gallery {
      width: 100%; } }
  ul.list-style-none {
    margin: 0;
    padding: 0; }
  
  .articles-flex {
    display: flex;
    flex-wrap: wrap; }
  
  .articles-flex .box-image-text {
    height: 100%;
    margin-bottom: 30px; }
  
298bc0f4   Alexey Boroda   first commit
94
  .articles-flex p.read-more {
c3e7999e   Виталий   header + gallery ...
95
96
97
    position: absolute;
    bottom: 10px;
    width: 100%; }
298bc0f4   Alexey Boroda   first commit
98
99
  
  /****/
c3e7999e   Виталий   header + gallery ...
100
101
102
103
104
105
106
107
108
  .main-car-mobile .img-responsive {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    text-align: center; }
  
  .main-car-mobile ul, .main-car-mobile p {
    font-weight: 400 !important;
    font-size: 12px; }
298bc0f4   Alexey Boroda   first commit
109
  
c3e7999e   Виталий   header + gallery ...
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
  .main-car-mobile ul li {
    margin-bottom: 5px; }
  
  @media (max-width: 515px) {
    .main-car-mobile h1, .main-car-mobile h2 {
      font-size: 7vw; } }
  @media (max-width: 365px) {
    li.previous, li.next {
      font-size: 3.5vw; } }
  @media (max-width: 350px) {
    section .container h2.text-uppercase, .big-text {
      font-size: 9vw; }
  
    .big-text-2 {
      font-size: 7vw; } }
298bc0f4   Alexey Boroda   first commit
125
  #back-to-top {
c3e7999e   Виталий   header + gallery ...
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 50px;
    background-color: #6aae7a;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    border-radius: 50%;
    box-shadow: 1px 4px 3px 0px rgba(0, 0, 0, 0.2);
    background-image: url("/img/arrow-up-big.png") !important;
    background-position: 50% 50% !important;
    background-repeat: no-repeat !important; }
298bc0f4   Alexey Boroda   first commit
144
145
  
  #back-to-top:hover {
c3e7999e   Виталий   header + gallery ...
146
147
148
    transition: 0.2s;
    background: #206b5c;
    color: #fff; }
298bc0f4   Alexey Boroda   first commit
149
150
  
  #back-to-top.show {
c3e7999e   Виталий   header + gallery ...
151
    opacity: 1; }
298bc0f4   Alexey Boroda   first commit
152
153
  
  .langs {
c3e7999e   Виталий   header + gallery ...
154
155
156
157
158
159
    text-transform: uppercase;
    line-height: 23px;
    margin-top: 2px;
    display: inline-block;
    margin-bottom: -2px;
    margin-left: 10px; }
298bc0f4   Alexey Boroda   first commit
160
161
  
  .langs a.active {
c3e7999e   Виталий   header + gallery ...
162
163
164
165
166
167
168
169
170
171
172
173
    color: #2f5a89 !important;
    font-weight: bold;
    cursor: default;
    text-decoration: none; }
  
  .has-error .form-control {
    border-color: #e80000; }
  
  .has-success .form-control {
    border-color: #009e03; }
  
  /*# sourceMappingURL=custom.css.map */