2020-11-18 18:45:45 +08:00
|
|
|
.article-copyright-info-container {
|
2022-09-30 10:51:42 +08:00
|
|
|
position relative
|
|
|
|
box-sizing border-box
|
|
|
|
width 100%
|
2022-12-07 21:02:39 +08:00
|
|
|
padding 0.8rem 0.8rem 0.8rem 1.3rem
|
2022-09-30 10:51:42 +08:00
|
|
|
font-size 1rem
|
2022-10-14 17:56:32 +08:00
|
|
|
background var(--background-color-2)
|
2020-11-18 18:45:45 +08:00
|
|
|
|
|
|
|
&::after {
|
2022-09-30 10:51:42 +08:00
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
left 0
|
|
|
|
width 0.5rem
|
|
|
|
height 100%
|
|
|
|
background var(--copyright-info-color)
|
|
|
|
content ''
|
2020-11-18 18:45:45 +08:00
|
|
|
}
|
|
|
|
|
2020-12-01 16:51:38 +08:00
|
|
|
|
2022-12-07 21:02:39 +08:00
|
|
|
&:hover {
|
|
|
|
.copy-copyright-info {
|
|
|
|
visibility visible
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-30 10:51:42 +08:00
|
|
|
.copyright-info-content {
|
|
|
|
position relative
|
|
|
|
box-sizing border-box
|
|
|
|
overflow-x auto
|
2020-11-18 18:45:45 +08:00
|
|
|
|
2022-09-30 10:51:42 +08:00
|
|
|
&::-webkit-scrollbar {
|
2022-12-07 21:02:39 +08:00
|
|
|
width 0.3rem
|
|
|
|
height 0.3rem
|
2022-09-30 10:51:42 +08:00
|
|
|
transition all 0.2s ease
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
2022-10-14 17:56:32 +08:00
|
|
|
background var(--text-color-4)
|
2022-09-30 10:51:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-track {
|
|
|
|
background transparent
|
|
|
|
}
|
2020-11-19 15:14:53 +08:00
|
|
|
|
2020-11-18 18:45:45 +08:00
|
|
|
li {
|
2022-09-30 10:51:42 +08:00
|
|
|
margin-bottom 0.4rem
|
2022-10-14 17:56:32 +08:00
|
|
|
color var(--text-color-3)
|
2022-09-30 10:51:42 +08:00
|
|
|
white-space nowrap
|
2020-11-18 18:45:45 +08:00
|
|
|
|
2022-10-29 23:54:39 +08:00
|
|
|
.type
|
|
|
|
.content {
|
|
|
|
color var(--text-color-3)
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:14:53 +08:00
|
|
|
.license {
|
2022-09-30 10:51:42 +08:00
|
|
|
font-weight bold
|
2020-11-19 15:14:53 +08:00
|
|
|
}
|
|
|
|
|
2020-11-18 18:45:45 +08:00
|
|
|
&:last-child {
|
2022-09-30 10:51:42 +08:00
|
|
|
margin-bottom 0
|
2020-11-18 18:45:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-12-07 21:02:39 +08:00
|
|
|
|
|
|
|
|
|
|
|
.copy-copyright-info {
|
|
|
|
position absolute
|
|
|
|
top 0.4rem
|
|
|
|
right 0.4rem
|
|
|
|
box-sizing border-box
|
|
|
|
padding 0.3rem
|
|
|
|
visibility hidden
|
|
|
|
cursor pointer
|
|
|
|
transition-t("visibility", "0", "0.2", "ease-in-out")
|
|
|
|
|
|
|
|
i {
|
|
|
|
color var(--text-color-3)
|
|
|
|
}
|
|
|
|
}
|
2020-11-18 18:45:45 +08:00
|
|
|
}
|