diff options
| author | Patrick Schönberger | 2018-12-11 17:52:58 +0100 |
|---|---|---|
| committer | Patrick Schönberger | 2018-12-11 17:52:58 +0100 |
| commit | 055e447bc0c9d170a54733539104976ec1c9004c (patch) | |
| tree | 996659c578d804213fec46c2206798ff75c6fa4b /html/style.css | |
| parent | 8ed339b1fd7fca6209d1784bd18faf8608ab67a6 (diff) | |
| download | lolstats-055e447bc0c9d170a54733539104976ec1c9004c.tar.gz lolstats-055e447bc0c9d170a54733539104976ec1c9004c.zip | |
code cleanup
Diffstat (limited to 'html/style.css')
| -rw-r--r-- | html/style.css | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/html/style.css b/html/style.css index af80d07..dc31ed5 100644 --- a/html/style.css +++ b/html/style.css @@ -25,9 +25,24 @@ input, select, button { width: calc(100% - 20px); } } +@keyframes startdown { + 100% { + top: 50%; + transform: translate(-50%, -50%); + width: 65%; + } + 0% { + top: 0%; + transform: translate(-50%, 0%); + width: calc(100% - 20px); + } +} #start.slideup { animation: startup 0.3s forwards linear; } +#start.slidedown { + animation: startdown 0.3s forwards linear; +} #start.up { top: 0%; transform: translate(-50%, 0%); @@ -135,9 +150,6 @@ button { border-radius: 5px; text-align: center; } -#stats { - background-color: red; -} .bottom-right { position: absolute; right: 0px; |
