Spaces:
Sleeping
Sleeping
File size: 780 Bytes
503af9c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
$anim-duration: 0.3s;
.code {
padding-bottom: 40px;
.editor {
height: 100%;
}
.bottom-bar {
height: 40px;
background: var(--darker-background);
position: absolute;
left: 0;
bottom: 0;
width: 100%;
font-size: 0;
border-top: 1px solid var(--border);
.btn {
cursor: pointer;
text-align: center;
color: var(--foreground);
font-size: 14px;
line-height: 40px;
width: 25%;
border-right: 1px solid var(--border);
display: inline-block;
transition: background-color $anim-duration, color $anim-duration;
&:active {
background: var(--highlight);
color: var(--select-foreground);
}
&.active {
color: var(--select-foreground);
}
}
}
}
|