blob: 59082d100a7cc627e8f09af3ce69fbffba852937 (
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
|
/* I don't like how on my phone, sometimes the date is wrapped, and sometimes
* it isn't. So on xs devices, the date is always beneath the header. */
@media (min-width: 768px) {
.post-header {
display: flex;
align-items: baseline;
justify-content: space-between;
column-gap: 1em;
}
}
.post-date {
flex: none;
}
.post-date .category {
margin-right: .5em;
}
/* On the sidebar, the date is always beside the header. */
.list-group-item .post-header {
display: flex;
align-items: baseline;
justify-content: space-between;
column-gap: 1em;
}
.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: 3px solid #eee;
}
@media (min-width: 480px) {
/* If the screen width allows for it, add some padding on the sides. */
.feed-entry {
padding: 0 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 h3 {
/* 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-top: 0;
padding-top: 22px;
}
|