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

55 lines
933 B
Stylus

.article-copyright-info-container {
position relative
box-sizing border-box
width 100%
font-size 1rem
background var(--second-background-color)
overflow hidden
&::after {
position absolute
top 0
left 0
width 0.5rem
height 100%
background var(--copyright-info-color)
content ''
}
.copyright-info-content {
position relative
box-sizing border-box
padding 0.8rem 0.8rem 0.8rem 1.3rem
overflow-x auto
&::-webkit-scrollbar {
width 0.4rem
height 0.4rem
transition all 0.2s ease
}
&::-webkit-scrollbar-thumb {
background var(--third-text-color)
}
&::-webkit-scrollbar-track {
background transparent
}
li {
margin-bottom 0.4rem
color var(--default-text-color)
white-space nowrap
.license {
font-weight bold
}
&:last-child {
margin-bottom 0
}
}
}
}