benj design tweaks

This commit is contained in:
SpikeHD
2022-05-15 18:31:28 -07:00
parent 585a17573c
commit c023c8df71
8 changed files with 179 additions and 77 deletions

View File

@@ -1,18 +1,20 @@
.RightBar {
position: absolute;
transform: translate(0%, 0%);
display:flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
height: 100vh;
width: 6%;
left: 94%;
height: calc(100vh - 190px);
width: 80px;
right: 0%;
z-index: 99;
background-color: rgba(77, 77, 77, 0.6);
z-index: 99;
}
.BarImg:hover {
@@ -32,4 +34,16 @@
.RightBar img:hover {
filter: invert(75%) sepia(0%) saturate(100%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
@media(max-height: 580px) {
.RightBar {
height: calc(100vh - 180px);
}
}
@media(max-height: 500px) {
.RightBar {
height: calc(100vh - 170px);
}
}