aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/stylesheets/hmno_blogg.scss
blob: 2bf0301475022333b60c3f0c1cdd9714b955f8fa (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
#blog_posts {
  article {
    background-color: #010101;
    border: 1px solid darkslategray;
    padding: 3px;
    margin-bottom: 1em;

    header {
      h1 {
        font-size: 115%;
        margin: 0;
        a {
          text-decoration: none;
          color: inherit;
        }
      }

      .details {
        font-size: 75%;
      }
    }

    footer {
      position: relative;

      .comment_count {
        position: absolute;
        top: 0;
        right: 0;
      }
    }
  }
}