2021-09-01 20:06:33 +09:00
|
|
|
body {
|
|
|
|
--primary: rgb(134, 179, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.xarticle {
|
|
|
|
margin: auto;
|
|
|
|
max-width: 720px;
|
|
|
|
}
|
2021-09-04 18:24:11 +09:00
|
|
|
|
2021-09-07 20:50:09 +09:00
|
|
|
.fade {
|
|
|
|
animation: 0.3s ease-out 0s fadeIn;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeIn {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateY(-8px);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|