diff options
author | Akash Keshav <112591754+domesticchores@users.noreply.github.com> | 2025-04-04 14:53:32 -0400 |
---|---|---|
committer | Akash Keshav <112591754+domesticchores@users.noreply.github.com> | 2025-04-04 14:53:32 -0400 |
commit | b4a9cd9d540d42a61bee9045d41ada392305a8d5 (patch) | |
tree | 3cddb6389800788cb5d8b397cf21dbd40142be1b /ufund-ui/src/app/components/home-page/home-page.component.css | |
parent | 8cdf84ae4a6765db8f462cc71e2685c1d3514f08 (diff) | |
download | JellySolutions-b4a9cd9d540d42a61bee9045d41ada392305a8d5.tar.gz JellySolutions-b4a9cd9d540d42a61bee9045d41ada392305a8d5.tar.bz2 JellySolutions-b4a9cd9d540d42a61bee9045d41ada392305a8d5.zip |
add light/dark mode toggle, only homepage is fully functional. -ak
Diffstat (limited to 'ufund-ui/src/app/components/home-page/home-page.component.css')
-rw-r--r-- | ufund-ui/src/app/components/home-page/home-page.component.css | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/ufund-ui/src/app/components/home-page/home-page.component.css b/ufund-ui/src/app/components/home-page/home-page.component.css index a10377f..f6e5631 100644 --- a/ufund-ui/src/app/components/home-page/home-page.component.css +++ b/ufund-ui/src/app/components/home-page/home-page.component.css @@ -6,7 +6,6 @@ justify-content: center; overflow: clip; } - #hero { display: flex; /*flex-direction: column;*/ @@ -19,12 +18,21 @@ h1 { max-width: 1200px; } +#cr { + opacity: var(--opacity-cr); +} + #jf { - /*position: absolute;*/ + opacity: var(--opacity-jf); +} + +.text-highlight { + text-decoration: underline; + color: var(--highlight-color); } #right { - max-width: 500px; + max-width: 450px; max-height: 500px; display: flex; justify-content: center; @@ -33,6 +41,6 @@ h1 { } #left { - max-width: 500px; + max-width: 550px; z-index: 1; } |