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