hexo-theme-keep/source/css/layout/_partial/article-copyright-info.styl

41 lines
684 B
Stylus

.article-copyright-info-container {
position: relative;
width: 100%;
box-sizing: border-box;
background: var(--second-background-color);
//border: 1px solid var(--border-color);
//border-left: none;
padding: 10px 6px;
font-size: 1em;
&::after {
position: absolute;
top: 0;
left: 0;
content: '';
width: 8px;
height: 100%;
background: var(--copyright-info-color);
}
ul {
margin-left: 10px;
li {
margin-bottom: 5px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
.license {
font-weight: bold;
}
&:last-child {
margin-bottom: 0;
}
}
}
}