-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_category.scss
More file actions
57 lines (47 loc) · 1.05 KB
/
_category.scss
File metadata and controls
57 lines (47 loc) · 1.05 KB
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
.category {
&__wrap {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
&__item {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
width: 100%;
height: 180px;
}
&__item:not(:last-child) {
width: 360px;
margin: 0 0 30px 0;
height: 260px;
}
&__text {
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 19px;
color: $text-color;
}
h3 {
padding: 5px 0 0 0;
color: $decor-color;
}
}
.woman__item {
background: url('./img/bcg.png'),
url('./img/woman_offer.jpg');
}
.men__item {
background: url('./img/bcg.png'),
url('./img/man_offer.jpg');
}
.kids__item {
background: url('./img/bcg.png'),
url('./img/kids_offer.jpg');
}
.acs__item {
background: url('./img/bcg_acs.png') no-repeat,
url('./img/acs_offer.jpg') no-repeat;
}