diff options
Diffstat (limited to 'html/etc.css')
| -rw-r--r-- | html/etc.css | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/html/etc.css b/html/etc.css new file mode 100644 index 0000000..768f657 --- /dev/null +++ b/html/etc.css @@ -0,0 +1,32 @@ +span.quote { + color: #789922; +} + +@keyframes rainbow { + 0% {color: red} + 33% {color: lime} + 66% {color: blue} + 100% {color: red} +} + +.visual { + background: linear-gradient(120deg, red, orange, yellow, green, blue, indigo, violet); + background-clip: text; + color: transparent; + /* animation: rainbow 1s linear infinite; */ +} + +img { + max-width: 100%; + height: auto; +} + +#stylechooser { + float: right; +} + +li p { + margin: 0; + padding-top: 2px; + padding-bottom: 2px; +} |
