Files
Polaris/static/assets/css/sidebar.css
T
2023-05-29 23:24:24 -04:00

58 lines
949 B
CSS

.sidebar {
position: fixed;
top: 15vh;
right: -60vh;
width: 50vh;
height: 75vh;
background: var(--sidebar-bg);
border-radius: 2vh;
box-shadow: 0vh 0.75vh 1.5vh 0vh var(--shadow-color);
text-align: center;
z-index: 100;
overflow-y: auto;
padding: 1vh;
transition: all 0.5s ease;
}
.sidebar.active {
right: 5vh;
transition: all 0.5s ease;
}
.sidebar>.scroll {
position: fixed;
box-shadow: 0.5vh 0.5vh 1vh 0vh var(--shadow-color);
border-radius: 1vh;
cursor: pointer;
background-color: var(--solid);
width: 50vh;
height: 0vh;
transition: 0.4s;
margin: auto;
top: 87vh;
opacity: 0;
z-index: 9999999999999999999;
}
.sidebar>.scroll.active {
opacity: 1;
height: 40px;
}
.sidebar>.scroll>span {
font-size: 4vh;
margin: auto;
}
.sidebar button {
margin-left: 1vh;
margin-right: 1vh;
padding-left: 2vh;
padding-right: 2vh;
margin-top: 2vh;
}
.sidebar h3 {
margin-bottom: 0vh;
}