aboutsummaryrefslogtreecommitdiff
path: root/src/css/_partial/_post/_copyright.scss
blob: 374061f820511773f694022fc2f8ac6a292d305d (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
.post-copyright {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px dashed $light-gray;

  .copyright-item {
    margin: 5px 0;

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

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

    .item-title {
      display: inline-block;
      min-width: 5rem;
      margin-right: .5rem;
      text-align: right;

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