-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
executable file
·96 lines (82 loc) · 1.64 KB
/
popup.css
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
84
85
86
87
88
89
90
91
92
93
94
95
96
/**
* @author Christian Blach, Ulrik Moe
* @license CC-BY-SA 4.0
**/
body {
background: linear-gradient(#fff, #EBEBEB 1%, #EBEBEB);
font-family: verdana,helvetica, arial, sans-serif;
font-weight: 400;
font-size: 12px;
width: 32.3em;
margin: 5px;
}
a {
text-decoration: none;
color: inherit;
}
a:hover { text-decoration: underline; }
:focus {outline:none;}
header {
display: flex;
font-size: 12px;
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
background: #035981;
color: #fff;
height: 27px;
line-height: 27px;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border: 1px solid rgba(0,0,0,0.2);
border-bottom: 0;
}
header span {
font-weight: bold;
font-size: 12px;
line-height: 27px
}
#timeRangeSelect {
margin:4px 4px 0 0;
font-size:12px;
height: 17px;
border: 1px solid #aaa;
}
.amino {
flex: 1;
}
.logo {
float: left;
margin: 4px 4px 0 4px
}
#feed {
background: #FDFDFD;
margin: 0;
padding: 2px 0 0;
min-height: 150px;
border: 1px solid #ccc;
border-top: 0;
}
#feed:empty {
background: #FDFDFD url('ajax-loader.gif') no-repeat center center;
}
#feed > li {
list-style: none;
background: #fefefe;
border-bottom: 1px solid #e4e4e4;
border-top: 1px solid #fafafa;
}
#feed > li:last-child { border-bottom: 0; }
#feed > li:nth-child(2n+2) {
background: #f7f7f7;
}
#feed a {
display: block;
padding: 5px 0 5px 8px
}
footer {
display: flex;
color: #666;
font-size: 0.9em;
padding: 4px 2px 0;
}
.authors { flex: 1; }
.sep { margin: 0 5px; }