Bilibili-Evolved/utils/about/about.css
2019-05-10 20:00:46 +08:00

26 lines
529 B
CSS

.bilibili-evolved-about
{
height: 100%;
width: 400px;
background: white;
color: #000;
position: fixed;
top: 0;
left: 0;
z-index: 100000;
transform: translateX(-100%);
transition: all .3s cubic-bezier(0, 0.86, 0.58, 1);
display: flex;
flex-direction: column;
box-shadow: 4px 0px 16px 0px #0000;
}
body.dark .bilibili-evolved-about
{
background: #222;
color: #eee;
}
.bilibili-evolved-about.opened
{
transform: translateX(0);
box-shadow: 4px 0px 16px 0px #0005;
}