article-bar.scss
912 Bytes
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
.article-bar {
position: relative;
background-color: #0042b1;
.btn {
color: #fff;
font-weight: bold;
}
&--item {
margin: 8px 0;
@media (max-width: $screen-xs) {
margin: 8px;
}
}
&--category-button {
position: relative;
width: 125px;
text-align: right;
margin-left: 10px;
font-size: 24px;
line-height: 20px;
font-family: 'Open Sans';
.icon {
display: inline-block;
margin: -40px -35px -40px -50px;
transform: scale(.37);
}
}
.navbar {
margin-bottom: 0;
}
.navbar-right {
margin-right: 15px;
}
@each $category, $color in $categories {
&.#{$category} {
background-color: $color;
}
}
.contraste & {
background-color: #262626;
}
}