feat: YWRkIGEgbGl0dGxlIGNoYXR0eSBhY2hpZXZlbWVudA==

This commit is contained in:
2024-07-27 12:56:22 +01:00
parent 9f43cbdf61
commit e26d4147d4
4 changed files with 112 additions and 13 deletions

View File

@@ -1,6 +1,7 @@
:root {
font-family: monospace;
--text: #4c4f69;
--surface0: #ccd0da;
--surface1: #bcc0cc;
--base: #eff1f5;
--lavender: #7287fd;
@@ -149,17 +150,6 @@ a {
display: flex;
}
#volume-slider-container {
display: none;
justify-content: start;
align-items: center;
}
#volume-slider-container > output {
color: var(--text);
margin-right: 1rem;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
input[type="range"] {
overflow: hidden;
@@ -333,3 +323,55 @@ input[type="range"]::-ms-fill-upper {
right: 50%;
height: 15px;
}
#volume-slider-container {
display: none;
justify-content: start;
align-items: center;
}
#volume-slider-container > output {
color: var(--text);
margin-right: 1rem;
}
aside#notification {
display: none;
position: absolute;
top: 0;
right: 0;
background: var(--surface0);
padding: 1rem 2rem;
margin: 2rem;
border: 2px solid var(--text);
}
aside#notification > p {
margin: 0;
}
aside#notification > #notification-title {
font-weight: 700;
margin-bottom: 0.5rem;
}
@keyframes notification-fade-in {
0% {
display: block;
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes notification-fade-out {
0% {
opactiy: 1;
}
100% {
opacity: 0;
}
}