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

_single.scss « modules « scss « src - github.com/diwao/hestia-pure.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abfabb3bfc9c34a7c0be0f8241a9a9d47535b261 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
@charset "UTF-8";

.post,
.post-aside,
.post-nav {
  padding: 0 5%;
}

.post-content {
  margin-bottom: 3em;

  img {
    border: 1px solid #eee;
    display: block;
    margin: 2em auto 3em;
    max-width: 100%;
  }

  p {
    line-height: 1.8;
    // word-wrap: break-word;
  }

  h2,
  h3,
  h4 {
    margin-top: 3em;
  }

  h2 {
    border-left: 5px solid $color-key;
    padding-left: .5em;
  }

  > p code {
    background-color: #282c34;
    border-radius: 3px;
    color: #abb2bf;
    font-family: monospace, 'Courier New', Courier, Monaco;
    font-size: 90%;
    margin: 0 .5em;
    padding: 2px 4px;
    // vertical-align: middle;
  }

  blockquote {
    background-color: #ccc;
    font-style: italic;
    margin: 30px 0;
    padding: 30px;

    a {
      font-size: .8em;
    }
  }
}

.post-hr {
  border-top: 1px solid #eee;
  margin: 25px auto;
}

.post-ad {
  margin: 10% auto 0;
  text-align: center;

  &__head {
    display: block;
    font-size: .8em;
  }

  &__body {
    display: inline-block;
  }
}

.post-nav {
  ol {
    padding: 0;
  }

  a {
    font-family: $font-family-base;
    font-size: 1em;
    text-decoration: none;
  }
}

.post-nav-label {
  display: block;
  font-weight: bold;
}

.post-nav-title {
  text-decoration: underline;
}

.post-nav-prev {
  padding-right: 2.5%;
}

.post-nav-next {
  padding-left: 2.5%;
  text-align: right;
}

.post-nav-back {
  text-align: center;
}