28 lines
788 B
CSS
28 lines
788 B
CSS
.article-copyright-info-container {
|
|
font-family: $english-font-family, -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Heiti SC', 'WenQuanYi Micro Hei', sans-serif;
|
|
position: relative;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 10px 6px;
|
|
font-size: 1rem;
|
|
background: var(--third-background-color);
|
|
border-radius: 14px;
|
|
border: 1px solid var(--shadow-color-1);
|
|
}
|
|
.article-copyright-info-container ul {
|
|
margin-left: 10px;
|
|
}
|
|
.article-copyright-info-container ul li {
|
|
margin-bottom: 5px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
color: var(--default-text-color);
|
|
}
|
|
.article-copyright-info-container ul li .license {
|
|
font-weight: bold;
|
|
}
|
|
.article-copyright-info-container ul li:last-child {
|
|
margin-bottom: 0;
|
|
}
|