mirror of
https://git.adityakumar.xyz/blog.git
synced 2024-11-12 20:09:44 +00:00
30 lines
461 B
SCSS
30 lines
461 B
SCSS
|
.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: " :";
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|