From dc6e8a97b41ccfe6f7786b9df1a9bd0580553bdb Mon Sep 17 00:00:00 2001 From: joak Date: Sun, 13 Oct 2024 12:51:23 +0000 Subject: [PATCH] Add 2024-10-19/style.css --- 2024-10-19/style.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 2024-10-19/style.css diff --git a/2024-10-19/style.css b/2024-10-19/style.css new file mode 100644 index 0000000..6c9d313 --- /dev/null +++ b/2024-10-19/style.css @@ -0,0 +1,32 @@ +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; +} \ No newline at end of file