35 lines
545 B
CSS
35 lines
545 B
CSS
.icon-right {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
padding: calc(3 * var(--unit-size));
|
|
|
|
width: var(--main-size);
|
|
height: auto;
|
|
|
|
fill: var(--white);
|
|
stroke-width: 0;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
#right-container {
|
|
order: 3;
|
|
}
|
|
|
|
#right-container[open] > div {
|
|
opacity: 100%;
|
|
}
|
|
|
|
#right-container[open] {
|
|
width: calc(100vw / 4);
|
|
border-left: solid 1px var(--bg2);
|
|
}
|
|
|
|
#right-panel {
|
|
position: fixed;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
padding: var(--small-size);
|
|
} |