website/static/style/global.css

58 lines
875 B
CSS
Raw Normal View History

2025-03-29 01:07:45 +09:00
@import "tailwindcss";
2025-04-29 19:13:40 +09:00
@plugin "@tailwindcss/typography";
2024-11-17 00:59:06 +09:00
:root {
2025-04-29 19:13:40 +09:00
font-family: "Zen Maru Gothic", sans-serif;
2024-11-17 00:59:06 +09:00
}
@supports (font-variation-settings: normal) {
:root {
2025-04-29 19:13:40 +09:00
font-family: "Zen Maru Gothic", sans-serif;
2024-11-17 00:59:06 +09:00
}
}
2025-05-03 13:01:49 +09:00
@supports (font-variation-settings: bold) {
:root {
font-family: "Zen Maru Gothic", sans-serif;
}
}
2025-05-07 09:07:41 +09:00
@view-transition {
navigation: auto;
2025-05-17 00:38:08 +09:00
}
2025-05-18 17:51:47 +09:00
@keyframes zoom-fade-out {
from {
opacity: 1;
transform: scale(1);
}
to {
opacity: 0;
transform: scale(1.05);
}
2025-05-17 00:38:08 +09:00
}
2025-05-18 17:51:47 +09:00
@keyframes zoom-fade-in {
from {
opacity: 0;
transform: scale(0.95);
}
to {
opacity: 1;
transform: scale(1);
}
}
::view-transition-old(zoom-fade) {
animation: 400ms ease both zoom-fade-out;
}
::view-transition-new(zoom-fade) {
animation: 500ms ease 100ms both zoom-fade-in;
}
.zoom-fade {
view-transition-name: zoom-fade;
}