diff options
| author | stonedDiscord <stoned@derpymail.org> | 2019-12-26 19:47:23 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-26 19:47:23 +0100 |
| commit | 1ce78d409cd885aaba67d45f38e7ef22843e267d (patch) | |
| tree | b4fbfe3960484a1cc01c14d80bae1a89254f3074 /webAO/client.css | |
| parent | 42c73f8fae6eb3b6dcc4666f543d39c156534757 (diff) | |
| parent | 5cdf61a2c53a7c0782fe026f0b19fdc13528df71 (diff) | |
Merge pull request #39 from AttorneyOnline/no_jquery
No jquery
Diffstat (limited to 'webAO/client.css')
| -rw-r--r-- | webAO/client.css | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/webAO/client.css b/webAO/client.css index c22c0f9..8b19f1b 100644 --- a/webAO/client.css +++ b/webAO/client.css @@ -79,6 +79,19 @@ img { width: 100%; } +@keyframes shake { + 0%,100% {left: 0; } + 20% {left: -10%; } + 40% {left: +10%; } + 60% {left: -10%; } + 80% {left: +10%; } +} + +@keyframes flash { + 0%,100% {background-color: transparent; } + 50% {background-color: white; } +} + #client_charselect { position: fixed; top: 0; @@ -176,7 +189,6 @@ img { } #client_fg { - display: none; position: absolute; height: 100%; width: 100%; @@ -192,6 +204,8 @@ img { height: 0%; width: auto; top: 1.5em; + transition: 0.25s linear; + transition-property: height, opacity; } #client_shout { @@ -426,6 +440,8 @@ img { bottom: 0; position: relative; display: inline-block; + transition: 1s linear; + transition-property: width; } .client_button { |
