diff options
| author | sD <stoned@derpymail.org> | 2019-12-25 18:17:04 +0100 |
|---|---|---|
| committer | sD <stoned@derpymail.org> | 2019-12-25 18:17:04 +0100 |
| commit | 25bf92857171e5d81daba41676ad23ea00eb8369 (patch) | |
| tree | d0e707c6d06a6754f1ab1947541332fa1208cadf /webAO/client.css | |
| parent | ab5a95dcdc622bb2c7cd35e2cc29c1881c882eb2 (diff) | |
| parent | 96220bf48024cf2722b45366bb176d6c1879fe7e (diff) | |
Merge branch 'master' into arup
Diffstat (limited to 'webAO/client.css')
| -rw-r--r-- | webAO/client.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/webAO/client.css b/webAO/client.css index 7a0d449..c22c0f9 100644 --- a/webAO/client.css +++ b/webAO/client.css @@ -246,6 +246,29 @@ img { color: white; } +.rainbow-text { + background-color: rgb(255, 255, 255); + background-image: repeating-linear-gradient(to right, + red 0% 8%, orange 8% 16%, yellow 16% 24%, green 24% 32%, blue 32% 40%, + red 40% 48%, orange 48% 56%, yellow 56% 64%, green 64% 72%, blue 72% 80%, + red 80% 88%, orange 88% 96%, yellow 96% 100% ); + background-size: 40% 40%; + background-clip: text; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + animation: rainbow 4s linear infinite; + } + + @keyframes rainbow_alt { + 0%,100% {background-position: 0 0; } + 50% {background-position: 400% 0; } + } + + @keyframes rainbow { + 0% {background-position: 0 0; } + 100% {background-position: 400% 0; } + } + #client_inputbox { font-size: 21px; padding: 2px 10px; |
