_feeds.scss
1.8 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
76
77
78
79
80
81
82
83
/***
System feeds
***/
.feeds {
margin: 0px;
padding: 0px;
list-style: none;
li {
background-color: #fafafa;
color: darken(#96A5AA, 7%);
margin-bottom: 7px;
&:before,
&:after {
display: table;
line-height: 0;
content: "";
}
&:after {
clear: both;
}
&:last-child {
margin-bottom: 0px;
}
.col1 {
float:left;
width:100%;
clear: both;
> .cont {
float:left;
margin-right:75px;
overflow:hidden;
> .cont-col1 {
float:left;
margin-right:-100%;
> .label {
display: inline-block;
padding: 5px 4px 6px 5px;
vertical-align: middle;
text-align: center;
> i {
text-align: center;
font-size: 14px;
}
}
}
> .cont-col2 {
float:left;
width:100%;
> .desc {
margin-left:35px;
padding-top: 4px;
padding-bottom: 5px;
overflow:hidden;
}
}
}
}
.col2 {
float:left;
width:75px;
margin-left:-75px;
> .date {
padding: 4px 9px 5px 4px;
text-align: right;
font-style: italic;
color:#c1cbd0;
}
}
}
}