リファクタリング

This commit is contained in:
moris 2025-02-28 21:10:30 +09:00
parent 25d8591816
commit 152f1b0831

View file

@ -17,7 +17,18 @@ body {
} }
/* font */
body {
font-family: "-apple-system", "BlinkMacSystemFont", "Hiragino Kaku Gothic ProN", "Noto Sans CJK JP", "Segoe UI", "BIZ UDPGothic", sans-serif;
} /* Apple | Linux | win-en win-jp */
code {
font-family: "Source Code Pro", "Monaco", "Consolas", "BIZ UDGothic", monospace;
} /* Linux | Apple | windows | 和文 */
em {
font-family: serif;
}
/* general */ /* general */
@ -36,31 +47,11 @@ img {
} }
/* font */
body {
font-family: "-apple-system", "BlinkMacSystemFont", "Hiragino Kaku Gothic ProN", "Noto Sans CJK JP", "Segoe UI", "BIZ UDPGothic", sans-serif;
/* Apple | Linux | win-en win-jp */
}
code {
font-family: "Source Code Pro", "Monaco", "Consolas", "BIZ UDGothic", monospace;
/* Linux | Apple | windows | 和文 */
}
em {
font-family: serif;
}
/* link style */ /* link style */
a { a {
text-decoration: none; text-decoration: none;
color: var(--theme-color); &:hover {text-decoration: underline;}
&:hover { color: var(--theme-color);
text-decoration: underline; &:visited {color: hsl(290, 40%, 50%);}
}
&:visited {
color: hsl(290, 40%, 50%);
}
} }