Files
plugins/ContentIndex/ContentIndex.css
chorblack e75f275ef4
Some checks failed
定时更新GitHub源插件 / 自动更新GitHub插件 (push) Has been cancelled
Initial commit
2026-03-07 11:19:25 +08:00

30 lines
646 B
CSS

@charset 'utf-8';
@media(min-width: 760px) {
#theContentIndex {
position:fixed;
display:block;
left:-50%;
bottom:0;
max-height:100%;
overflow-y:auto;
background: #fff;
padding-right: 20px;
transition: left 0.5s;
}
#theContentIndex:hover {
left:0;
}
#theContentIndex:before {
position:fixed;
bottom:0;
left:0;
content:'CONTENTS';
background:#eee;
padding:10px 20px;
transition: bottom .5s;
}
#theContentIndex:hover:before {
bottom: -5em;
transition-delay:.3s;
}
}