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

40 lines
620 B
Stylus
Raw Normal View History

.article-copyright-info-container {
position: relative;
width: 100%;
box-sizing: border-box;
background: var(--second-background-color);
2020-11-19 15:14:53 +08:00
padding: 10px 6px;
2020-12-01 16:51:38 +08:00
font-size: 1rem;
&::after {
position: absolute;
top: 0;
left: 0;
content: '';
2020-11-19 15:14:53 +08:00
width: 8px;
height: 100%;
2020-11-19 15:14:53 +08:00
background: var(--copyright-info-color);
}
2020-12-01 16:51:38 +08:00
ul {
2020-11-19 15:14:53 +08:00
margin-left: 10px;
li {
2020-11-19 15:14:53 +08:00
margin-bottom: 5px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2020-11-19 15:14:53 +08:00
.license {
font-weight: bold;
}
&:last-child {
margin-bottom: 0;
}
}
}
}