78 lines
1.3 KiB
SCSS
78 lines
1.3 KiB
SCSS
@use "sass:color";
|
|
@use "./wal";
|
|
@use "./colors";
|
|
@use "./functions" as funs;
|
|
|
|
.center-window-container {
|
|
background: colors.$bg-translucent;
|
|
border-radius: 18px;
|
|
padding: 12px;
|
|
|
|
& .left {
|
|
& > .top {
|
|
padding-bottom: 10px;
|
|
|
|
& .time {
|
|
font-size: 28px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
& .date {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: colors.$fg-disabled;
|
|
}
|
|
}
|
|
|
|
& .big-media {
|
|
padding: 6px 16px;
|
|
|
|
& > box > .image {
|
|
background-size: cover;
|
|
background-position: center center;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
& > .info {
|
|
padding: {
|
|
top: 4px;
|
|
bottom: 6px;
|
|
};
|
|
|
|
& .title {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
& .artist {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: colors.$fg-disabled;
|
|
}
|
|
}
|
|
|
|
& > .controls {
|
|
padding: 8px 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
& .right {
|
|
& .calendar-box {
|
|
padding: 5px;
|
|
& calendar {
|
|
border-radius: 6px;
|
|
padding: 2px;
|
|
|
|
&.view {
|
|
background: funs.toRGB(color.adjust($color: wal.$color1, $lightness: -35%));
|
|
|
|
& header {
|
|
background: funs.toRGB(color.adjust($color: wal.$background, $lightness: -20%));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|