Files
Polaris/static/assets/css/sidebar.css
T
2023-07-17 23:38:36 -04:00

76 lines
1.3 KiB
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: 4vh;
}
.sidebar>.scroll>span {
font-size: 4vh;
margin: auto;
}
.sidebar>.settings-button {
margin-left: 2vh;
margin-right: 2vh;
padding-left: 2vh;
padding-right: 2vh;
margin-top: 2vh;
min-width: 7vh;
}
.icon-button {
display: flex;
align-items: center;
justify-content: center;
font-size: 3vh;
box-shadow: 0.5vh 0.5vh 1vh 0vh var(--shadow-color);
width: fit-content;
}
.sidebar h3 {
margin-bottom: 0vh;
}
.quick-options {
display: flex;
justify-content: space-between;
align-items: center;
margin-left: 5vh;
margin-right: 5vh;
}