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

_copyright.scss « _post « _partial « sass « assets - github.com/xianmin/hugo-theme-jane.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86d4036ce4cab7d20335d9e9c2d7b1b9cb00cade (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
.post-copyright {
  padding: 10px;
  background-color: hsla(0,0%,71%,.1);
  border: 1px solid #e1e1e1;
  border-left: solid;
  margin-top: 3em;

  .copyright-item {
    margin: 5px 0;

    a {
      color: $theme-color;
      word-wrap: break-word;

      &:hover {
        border-bottom: $content-link-border;
      }
    }

    .item-title {
      display: table-cell;
      min-width: 5rem;
      // margin-right: .5rem;
      text-align: right;
      font-weight: bold;

      &:after {
        content: " :";
      }
    }

    .item-content {
      display: table-cell;
      padding-left: .5rem;
    }
  }
}