2025-10-27 21:33:38 +01:00
|
|
|
@use "sass:map";
|
|
|
|
|
|
|
|
|
|
@use "../../hippie-style/hippie";
|
|
|
|
|
|
2025-10-27 23:24:49 +01:00
|
|
|
$padding_half: calc(#{hippie.$space_half} - 3px) hippie.$space_half;
|
|
|
|
|
|
|
|
|
|
%flex-bar {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
align-content: center;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
gap: hippie.$space_half hippie.$space_basic;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-27 21:33:38 +01:00
|
|
|
#task-bar {
|
2025-10-27 23:24:49 +01:00
|
|
|
@extend %flex-bar;
|
2025-10-27 21:33:38 +01:00
|
|
|
z-index: map.get(hippie.$z-indexes, "content-top");
|
|
|
|
|
position: fixed;
|
|
|
|
|
//right: 0;
|
|
|
|
|
//bottom: 0;
|
|
|
|
|
//left: 0;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
padding: hippie.$space_basic;
|
|
|
|
|
background-color: rgba(0, 0, 0, .1);
|
|
|
|
|
|
2025-10-27 23:24:49 +01:00
|
|
|
nav,
|
|
|
|
|
& > div {
|
|
|
|
|
@extend %flex-bar;
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-27 21:33:38 +01:00
|
|
|
button {
|
|
|
|
|
@extend .button_io;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2025-10-27 23:24:49 +01:00
|
|
|
|
|
|
|
|
nav.small {
|
|
|
|
|
//font-size: .8em;
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
border: none;
|
|
|
|
|
padding: $padding_half;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav.big {
|
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.clock {
|
|
|
|
|
text-align: end;
|
|
|
|
|
|
|
|
|
|
&,
|
|
|
|
|
& > * {
|
|
|
|
|
line-height: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-10-27 21:33:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#screen-space {
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#placeholder {
|
|
|
|
|
display: none;
|
|
|
|
|
z-index: map.get(hippie.$z-indexes, "content-top");
|
|
|
|
|
position: fixed;
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 100px;
|
|
|
|
|
border: 2px dashed deeppink;
|
|
|
|
|
background-color: hotpink;
|
|
|
|
|
}
|