-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfollow-hn.css
More file actions
71 lines (62 loc) · 1.07 KB
/
Copy pathfollow-hn.css
File metadata and controls
71 lines (62 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#follow-hn-wrapper {
position: fixed;
z-index: 1000;
top: 0;
bottom: 0;
right: -190px;
width:230px;
margin:0;
padding:0;
transition: right 0.5s;
}
#follow-hn-wrapper.visible {
right:0;
}
#follow-hn-show-feed {
display: block;
float:right;
width:30px;
height:30px;
color:#fff;
font-size:30px;
background-color:#ff6600;
overflow: hidden;
text-align:center;
box-shadow: -1px 1px 0px rgba(0,0,0,0.15);
}
#follow-hn-feed {
float:right;
height:100%;
width:200px;
overflow: auto;
background-color: #828282;
margin: 0;
padding: 0;
box-shadow: -1px 1px 0px rgba(0,0,0,0.15);
}
#follow-hn-feed:hover {
right:0;
}
#follow-hn-feed ul {
list-style-type: none;
margin: 0;
padding: 0;
}
#follow-hn-feed ul li {
margin: 0;
padding: 0;
}
a.follow-hn-feed-item {
display: block;
padding: 0.5em 12px;
font-size: 0.8em;
border-left:10px solid #828282;
color: #000 !important;
background-color:#f6f6ef;
}
a.follow-hn-feed-item:hover {
background-color:#e6e6df;
}
a.follow-hn-feed-item.new {
border-left:10px solid #ff6600;
}