Grid.scss
1.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
@import '../../styles/app';
/* NEWS LIST */
:global {
.news-list {
margin-bottom: 0;
padding-left: 0;
li {
list-style: none;
box-sizing: content-box;
border-top: 1px solid $gray-200;
padding: 12px;
cursor: pointer;
@include transition(background-color 0.2s ease-out);
&:hover {
background: $body-bg-light;
}
&:last-child {
margin-bottom: -10px;
}
}
img,
.icon {
float: left;
height: 50px;
width: 50px;
}
.icon {
line-height: 50px;
border-radius: 50%;
text-align: center;
font-size: 28px;
.fa {
vertical-align: baseline;
}
}
.news-item-info {
margin-left: 62px; /* 50 + 12px padding */
}
.name {
text-transform: uppercase;
a {
text-decoration: none;
&:hover {
color: $link-color;
}
}
}
}
}
/* SHARES LIST */
:global {
.shares-widget {
:global {
.list-group {
.list-group-item {
display: flex;
align-items: center;
}
}
}
}
}