blob: 377dbbd3be398dad147d949ea0ca447040706bf1 (
plain)
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
|
#banner{
color: #999;
padding: 30px 0;
line-height: 30px;
text-align: center;
position: relative;
display: none;
@include border-shadow();
&:hover{
a{
color: $main;
}
}
a{
color: #999;
@include transition(0.3s);
&:hover{
text-decoration: underline;
}
}
small{
position: absolute;
right: 0;
bottom: 0;
}
.loading{
background: image-url('loading_pacman.gif') center no-repeat;
text-indent: -9999px;
}
.container{
height: 30px;
overflow: hidden;
position: relative;
display: none;
.feed{
list-style: none;
position: absolute;
top: 0;
width: 100%;
li{
position: relative;
small{
position: absolute;
right: 0;
}
}
}
}
}
|