mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
26 lines
529 B
CSS
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;
|
|
} |