mirror of https://github.com/luizdepra/hugo-coder.git

Philipp Rintz
16.43.2018 764b9ffef3bf05f8c6bea74cc2961e816527de1d
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
body.rtl {
  .content {
    .post {
      .post-meta {
        .posted-on {
          margin-left: 1.5rem;
          margin-right: 0;
        }
      }
    }
  }
  .list {
    ul {
      li {
        span {
          text-align: left;
          margin-left: 3.0rem;
          margin-right: 0;
          @media only screen and (max-device-width : 768px) {
            text-align: right;
          }
        }
      }
    }
  }
}