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

_image.scss « _post « _partial « sass « assets - github.com/xianmin/hugo-theme-jane.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb9b681c4e7c00f3b017b4fbc103a4b1d8495506 (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
// ==============================
// Post image
// ==============================

p>img {
  cursor: pointer;
}

figure {
  a:hover {
    border: 0;
  }

  &.center {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  &.right {
    float: right;
    margin-left: 1.5em;
  }

  &.left {
    float: left;
    margin-right: 1.5em;
  }

  figcaption {
    margin-top: 0.5em;
    text-align: center;
    line-height: 1.5em;

    h4 {
      color: #b5b5b5;
      // font-size: 0.9em;
      margin: 0;
    }

    p {
      font-size: 0.9em;
      color: #b5b5b5;
      font-style: italic;
      margin: 0;
    }
  }
}