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;
|
2025-11-02 11:32:57 +01:00
|
|
|
align-items: center;
|
2025-10-27 23:24:49 +01:00
|
|
|
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-11-02 09:26:19 +01:00
|
|
|
&.top,
|
|
|
|
|
&.bottom {
|
|
|
|
|
nav,
|
|
|
|
|
& > div {
|
|
|
|
|
&:last-child {
|
|
|
|
|
margin-top: unset;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.clock {
|
|
|
|
|
text-align: end;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.right,
|
|
|
|
|
&.left {
|
|
|
|
|
nav,
|
|
|
|
|
& > div {
|
|
|
|
|
&:last-child {
|
|
|
|
|
margin-top: auto;
|
|
|
|
|
margin-left: unset;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.clock {
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
& > span {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
word-wrap: anywhere;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-27 23:24:49 +01:00
|
|
|
nav,
|
|
|
|
|
& > div {
|
|
|
|
|
@extend %flex-bar;
|
2025-11-02 09:26:19 +01:00
|
|
|
flex-direction: inherit;
|
2025-10-27 23:24:49 +01:00
|
|
|
}
|
|
|
|
|
|
2025-10-27 21:33:38 +01:00
|
|
|
button {
|
|
|
|
|
@extend .button_io;
|
|
|
|
|
overflow: hidden;
|
2025-10-31 19:47:19 +01:00
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
2025-10-27 21:33:38 +01:00
|
|
|
}
|
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 {
|
|
|
|
|
&,
|
|
|
|
|
& > * {
|
|
|
|
|
line-height: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-10-27 21:33:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#screen-space {
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#placeholder {
|
2025-11-02 11:39:11 +01:00
|
|
|
@extend %flex-bar;
|
2025-10-27 21:33:38 +01:00
|
|
|
display: none;
|
2025-11-02 11:39:11 +01:00
|
|
|
z-index: map.get(hippie.$z-indexes, "toast");
|
2025-10-27 21:33:38 +01:00
|
|
|
position: fixed;
|
2025-11-02 13:12:04 +01:00
|
|
|
border: 1px dashed black;
|
|
|
|
|
border-radius: 2px;
|
2025-11-02 11:39:11 +01:00
|
|
|
background-color: rgba(0, 0, 0, .4);
|
|
|
|
|
padding: 16px;
|
|
|
|
|
|
2025-11-02 13:12:04 +01:00
|
|
|
&.top,
|
|
|
|
|
&.bottom {
|
|
|
|
|
span {
|
|
|
|
|
writing-mode: unset;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.right,
|
|
|
|
|
&.left {
|
|
|
|
|
span {
|
|
|
|
|
writing-mode: vertical-rl;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-02 11:39:11 +01:00
|
|
|
* {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& > div {
|
|
|
|
|
@extend %flex-bar;
|
|
|
|
|
flex-direction: inherit;
|
2025-11-02 13:12:04 +01:00
|
|
|
flex-wrap: nowrap;
|
2025-11-02 11:39:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box,
|
|
|
|
|
.box_brd {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box {
|
|
|
|
|
background-color: black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box_brd {
|
|
|
|
|
border: 2px solid black;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
2025-10-27 21:33:38 +01:00
|
|
|
}
|