This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.css
97 lines (97 loc) · 1.67 KB
/
index.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
97
.inbox {
flex: 1;
}
.inbox .item {
display: flex;
border-top: 1px solid #ddd;
padding: 0.5rem 0;
color: #555;
align-items: center;
}
.inbox .item:hover {
background: #fafafa;
}
.inbox .item .source {
flex: 0 0 120px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.inbox .item .source a {
color: #555;
}
.inbox .item .title {
flex: 1;
}
.inbox .item .pubdate {
font-size: 13px;
}
.inbox .intro {
background: #fafafa;
padding: 1rem 2rem;
color: #666;
}
.sources-list {
flex: 0 0 300px;
margin-right: 1rem;
border: 1px solid #ccc;
border-radius: 3px;
}
.sources-list form {
display: flex;
}
.sources-list input {
flex: 1;
padding: 0.3rem 0.4rem;
font-size: 14px;
font-weight: 100;
border: 0;
border-bottom: 1px solid #ddd;
border-radius: 3px 0px 0px 0;
}
.sources-list button {
background: #eee;
border: 0;
border-left: 1px solid #ddd;
border-bottom: 1px solid #ddd;
border-radius: 0 3px 0 0;
color: #666;
padding: 0 0.5rem;
}
.sources-list .source {
padding: 0.3rem 0.4rem;
border-bottom: 1px solid #ddd;
max-width: 287px;
overflow: hidden;
text-overflow: ellipsis;
}
.sources-list .source:last-child {
border: 0;
}
.sources-list .source .remove {
float: right;
cursor: pointer;
color: #989494;
font-weight: bold;
}
.sources-list .source .error {
color: #c00;
font-size: 12px;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, Cantarell, "Oxygen Sans", "Helvetica Neue", sans-serif;
}
main {
display: flex;
align-items: flex-start;
}
h1 small {
font-size: 14px;
font-weight: 100;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}