blob: a3e8f14ec49fe3507ba17b291132389fa126acd9 (
plain) (
blame)
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
|
/* Wrap the post date to the next line if necessary. */
.flex-header {
display: flex;
align-items: baseline;
column-gap: 1.5em;
}
@media(max-width: 480px) {
.flex-header {
column-gap: 1em;
}
.feed-entry .hide-on-mobile {
display: none;
}
}
.flex-header-left, .flex-header-right {
flex: none;
}
.flex-header-right {
/* Right-align the post date if on the next line. */
margin-left: auto;
}
/* Add some margin after the last .feed-entry. */
.feed-entry {
margin-bottom: 20px;
}
.feed-entry + .feed-entry {
margin-top: -20px;
}
.pagination {
margin-top: 0;
}
.feed-entry {
/* The entire feed entry is a link now. */
display: block;
position: relative;
color: inherit !important;
/* Don't use an actual <hr>, it's margins are too big, use a border instead.
* The color of <hr>. */
border-bottom: 1px solid #eee;
}
@media (min-width: 480px) {
/* If the screen width allows for it, add some padding on the sides. */
.feed-entry {
padding-left: 11px;
padding-right: 11px;
}
}
.feed-entry:hover, .feed-entry:focus {
/* Obviously, don't underline anything. The :focus case can be reproduced by
* long-pressing the link on Android, then dismissing the popup and long-
* pressing another link. */
text-decoration: none;
}
.feed-entry:hover {
/* This is the .list-group-item:hover background color. */
background-color: #f5f5f5;
}
.feed-entry h5 {
/* This is pretty funny and tragic, as is always the case with CSS.
* Android's Chrome thinks that it's not necessary to highlight the top
* margin (reproducible by long-pressing the link), _but_ it does highlight
* the top padding. This is obviously a browser bug. */
margin: 0;
padding: 15px 0 11px;
}
|