mirror of
https://github.com/mue/mue.git
synced 2026-07-12 02:42:07 +02:00
31 lines
465 B
SCSS
31 lines
465 B
SCSS
.weather {
|
|
position: absolute;
|
|
bottom: 1rem;
|
|
right: 1rem;
|
|
cursor: initial;
|
|
user-select: none;
|
|
padding: 20px;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
border-radius: 20px;
|
|
|
|
span {
|
|
text-shadow: 0 0 10px rgb(0 0 0 / 50%);
|
|
}
|
|
|
|
svg {
|
|
filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.1));
|
|
vertical-align: middle;
|
|
font-size: 35px;
|
|
}
|
|
|
|
.loc {
|
|
font-size: 0.7em;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.minmax {
|
|
font-size: 0.5em;
|
|
}
|
|
}
|