Blame view

public/css/pages/search-result/result-content.css 840 Bytes
b80175387   Андрей Ларионов   Начальный проект ...
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
  .result-content-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  .result-item {
    max-width: 315px;
    width: 100%;
    height: 550px;
    margin-top: 20px;
    -webkit-transition: -webkit-box-shadow 0.2s ease;
    transition: -webkit-box-shadow 0.2s ease;
    -o-transition: box-shadow 0.2s ease;
    transition: box-shadow 0.2s ease;
    transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  }
  .result-item:not(:nth-child(4n)) {
    margin-right: 6px;
  }
  .result-item:hover {
    -webkit-box-shadow: 0px 5px 12.5px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 5px 12.5px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
  }
  
  .result-viewed {
    padding-bottom: 121px;
2f5f2c1a4   Андрей Ларионов   Баг с версткой ка...
34
    padding-top: 70px;
b80175387   Андрей Ларионов   Начальный проект ...
35
  }