aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/assets/css/jekyll-theme/posts.css
blob: 1e0fc4796297edb2a5191d6df8fa96ad11a530c4 (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
/* Wrap the post date to the next line if necessary. */
.flex-header {
  display: flex;
  align-items: baseline;
  column-gap: 1.5em;
}

.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: 11px;
}
.feed-entry + .feed-entry {
  margin-top: -11px;
}
.pagination {
  margin-top: 11px;
}

.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;
}