pages/2024-10-19/style.css

32 lines
355 B
CSS
Raw Permalink Normal View History

2024-10-13 12:51:23 +00:00
body{
font-size: 100%;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.rotate{
animation: spin 10s infinite linear;
display: inline-block;
font-size: 126%;
line-height: 1;
transform-origin: center center;
}
pre{
white-space: pre-wrap;
max-width: 600px;
}
img{
max-width: 600px;
}