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

55 lines
918 B
Stylus
Raw Normal View History

.article-copyright-info-container {
position relative
box-sizing border-box
width 100%
2022-09-30 11:36:38 +08:00
overflow hidden
font-size 1rem
2022-10-14 17:56:32 +08:00
background var(--background-color-2)
&::after {
position absolute
top 0
left 0
width 0.5rem
height 100%
background var(--copyright-info-color)
content ''
}
2020-12-01 16:51:38 +08:00
.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 {
2022-10-14 17:56:32 +08:00
background var(--text-color-4)
}
&::-webkit-scrollbar-track {
background transparent
}
2020-11-19 15:14:53 +08:00
li {
margin-bottom 0.4rem
2022-10-14 17:56:32 +08:00
color var(--text-color-3)
white-space nowrap
2020-11-19 15:14:53 +08:00
.license {
font-weight bold
2020-11-19 15:14:53 +08:00
}
&:last-child {
margin-bottom 0
}
}
}
}