天気図を表示するUserCSS
code:style.css
@media only screen and (min-width: 480px) {
--scale: 0.5;
--width: calc(600px * var(--scale));
--height: calc(581px * var(--scale));
position: fixed;
top: 40px;
right: 0;
display: block;
width: var(--width);
height: var(--height);
content: "";
background-size: var(--width) var(--height);
}
}
めっちゃ見やすくて良いMijinko_SD.icon
2024-02-23
変数を使うようにした
lintとformatをした