aboutsummaryrefslogtreecommitdiff
path: root/www/assets/partials/preview/article.css
blob: 9629597ffdec42e040ab5918536106e3ec8bac98 (plain)
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
.article-preview {
  font-size: 0.95em;
  padding-inline: 0.5em;
  padding-block: 0.5em;
  margin-block-end: 0.5em;
  border-radius: 3px;
  background-color: hsl(33, 100%, 98%);

  & > p {
    font-size: 0.9em;
    line-height: 1.4;
    margin-inline-start: 0.3em;
    margin-block: 0;
  }

  & > .title {
    margin-block-start: 0;
    margin-block-end: 0.3em;
  }

  & > .date {
    font-size: small;
    float: right;
    margin-inline-end: 1.5em;
    color: hsl(0, 0%, 25%);
  }

  & > .content {
    overflow: hidden;
    height: 3lh;
  }
}

html[data-theme="dark"]  {
  & .article-preview {
    background-color: hsl(0, 0%, 3%);

    & > .date {
      color: hsl(0, 0%, 75%);
    }
  }
}