-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathavailable-mechanic-style.css
161 lines (154 loc) · 2.97 KB
/
available-mechanic-style.css
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
* {
box-sizing: border-box;
}
.vitrine {
display: block;
margin: 50px auto;
max-width: 1300px;
text-align: center;
width: 100%;
}
body {
background:rgba(18,18,26,1);
background-image:url('http://artlantis-media.ru/static/img/0000/0002/7260/27260842.qvpm616fga.png');
background-blend-mode:overlay;
background-size:15%;
font-family:"Raleway","Roboto","Helvetica",sans-serif;
font-size: 13px;
margin: 0;
padding: 0;
color: white;
}
ul {
padding: 0;
margin: 0;
}
ul li {
list-style: none;
}
.product-list {
align-items: center;
display: flex;
justify-content: center;
margin: 0 auto;
max-width: 1300px;
width: 100%;
}
@media (max-width: 991px) {
.product-list {
flex-wrap: wrap;
}
}
.product-item {
border: 1px solid #e1e1e1;
cursor: pointer;
margin: 15px 5px;
max-width: 300px;
transition: 0.2s;
width: 100%;
}
.product-item .product-link {
color: white;
text-decoration: none;
}
.product-item .product-info {
margin: 0;
padding: 0;
position: relative;
width: 100%;
}
.product-item .product-info .tag-procent {
background: #f00;
color: #fff;
font-size: 12px;
font-weight: bold;
padding: 5px 15px;
position: absolute;
right: 10px;
top: 10px;
}
.product-item .product-info-img {
border-bottom: 1px solid #e1e1e1;
height: 240px;
width: 100%;
align-items: center;
display: flex;
justify-content: center;
}
.product-item .product-info-img img {
max-width: 200px;
}
.product-item .product-info-description {
padding: 15px;
}
.product-item .product-info-description .title {
font-size: 13px;
margin: 0;
padding: 0;
}
.product-item .product-info-description .description {
height: 30px;
margin: 3px 0;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
display: -webkit-box;
overflow: hidden;
}
.product-item .price-box {
align-items: center;
border-top: 1px solid #e1e1e1;
display: flex;
justify-content: space-between;
padding: 15px;
}
.product-item .price del {
color: #ccc;
font-size: 14px;
margin-right: 10px;
}
.product-item .price ins {
color: #4d61fc;
font-size: 18px;
font-weight: bold;
text-decoration: none;
}
.product-item .price .price-info {
color: #4d61fc;
display: block;
font-weight: bold;
margin-top: 5px;
}
.product-item .star-ranking {
display: flex;
margin-top: 10px;
}
.product-item .star-ranking img {
max-width: 15px;
}
.product-item .star-ranking .qtd-votes {
color: #555;
font-size: 12px;
margin-left: 10px;
}
.product-item:hover {
transform: translateY(-2px);
box-shadow: -2px 48px 56px -41px rgba(215, 209, 36, 58);
}
.btn-buy {
background: #4d61fc;
border: 0;
color: #fff;
cursor: pointer;
padding: 10px 15px;
text-decoration: none;
transition: 0.2s;
}
.btn-buy .fas {
margin-left: 3px;
}
.btn-buy:hover {
background: #0c1979;
}
.d-block {
display: block;
}