-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_catalog.scss
More file actions
56 lines (43 loc) · 1.07 KB
/
_catalog.scss
File metadata and controls
56 lines (43 loc) · 1.07 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
.header__menu {
display: flex;
justify-content: space-between;
padding: 60px 230px;
background-color: #F8F3F4;
h2 {
color: $decor-color;
}
.breadcrumbs {
margin: 0;
padding: 0;
list-style: none;
li {
display: inline-block;
vertical-align: top;
margin-right: 5px;
&:not(:last-child):after {
content: "/";
margin-left: 5px;
font-weight: 300;
font-size: 14px;
line-height: 17px;
color: #636363;
}
span {
color: $decor-color;
font-weight: bold;
}
}
a {
font-weight: 300;
font-size: 14px;
line-height: 17px;
color: #636363;
text-decoration: none;
&:not(span):hover {
text-decoration: underline;
}
}
}
}
@import "_filters.scss";
@import "_pagination.scss";