From b045d3f01a9d49b5ad391bcf3f1404900882c141 Mon Sep 17 00:00:00 2001 From: 0neGal Date: Sun, 24 Apr 2022 20:59:40 +0200 Subject: more minor improvements to the UI sped up some animations, added a few more colors to different places, overall just a slight spice up to the UI --- src/app/main.css | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) (limited to 'src/app/main.css') diff --git a/src/app/main.css b/src/app/main.css index 1e051e1..99d806c 100644 --- a/src/app/main.css +++ b/src/app/main.css @@ -1,7 +1,13 @@ :root { --red: 199, 119, 127; + --red2: 181 97 105; + --blue: 129, 161, 193; + --blue2: 139, 143, 185; + --orange: 213, 151, 131; + --orange2: 197 129 107; + --padding: 25px; @@ -172,7 +178,7 @@ button { .popup .misc button img { opacity: 0.6; width: var(--height); - transform: scale(0.6); + transform: scale(0.5); height: var(--height) !important; } @@ -239,6 +245,10 @@ button { margin-top: var(--spacing); } +.popup .el button.info { + background: rgb(var(--blue2)); +} + .popup .options { color: white; margin: calc(var(--padding) / 2); @@ -392,7 +402,7 @@ img {pointer-events: none} background-size: cover; background-position: center; background-repeat: no-repeat; - transition: background-image 0.5s ease-in-out; + transition: background-image 0.1s ease-in-out; filter: brightness(0.4) blur(2px) grayscale(0.6); } @@ -570,7 +580,7 @@ img {pointer-events: none} margin-bottom: 10px; border-radius: 10px; background: var(--redbg); - transition: 0.3s ease-in-out; + transition: 0.2s ease-in-out; filter: drop-shadow(0px 8px 5px rgba(0, 0, 0, 0.1)); } @@ -640,8 +650,13 @@ a:hover { } #installmod {background: rgb(var(--blue))} -#togglemod, #toggleall {background: rgb(var(--orange))} -#removeall, #removemod {background: rgb(var(--red))} +#findmod {background: rgb(var(--blue2))} + +#togglemod {background: rgb(var(--orange))} +#toggleall {background: rgb(var(--orange2))} + +#removemod {background: rgb(var(--red))} +#removeall {background: rgb(var(--red2))} button:disabled { opacity: 0.5; pointer-events: none; -- cgit v1.2.3