Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_single.scss « scss « assets - github.com/4ever9/less.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18c9dcc9d9eeff5c00216ea58297bf0fd02aa0da (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
43
44
45
46
47
48
49
50
51
52

.single {
  line-height: 2;
  color: #4C4E4D;
  font-size: 16px;

  .single-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Monda', -apple-system, BlinkMacSystemFont, PingFang SC, Hiragino Sans GB, Microsoft YaHei, "\5FAE\8F6F\96C5\9ED1", helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, Arial, sans-serif;
  }

  pre {
    border-radius: 2px;
    padding: 20px;

    code {
      font-family: "menlo", serif;
      font-size: 14px;
    }
  }

  p {
    margin: 30px 0 30px;
  }

  h1, h2, h3, h4, h5, h6 {
    margin: 30px 0 30px;
    font-family: 'Monda', -apple-system, BlinkMacSystemFont, PingFang SC, Hiragino Sans GB, Microsoft YaHei, "\5FAE\8F6F\96C5\9ED1", helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, Arial, sans-serif;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  ol, ul {
    padding-left: 30px;
  }
}