diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2025-04-07 16:46:53 -0400 | 
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2025-04-07 16:46:53 -0400 | 
| commit | bb4e0e55fee7ec8f34c36e6299301d612a0de2ce (patch) | |
| tree | 89e0b658d0aba56a0fb15aeb6d1f7c2da67e4e91 /ufund-ui/src/app/components/signup | |
| parent | ebeafe0a6a70da064fd97359e38f53406a58bed4 (diff) | |
| download | JellySolutions-bb4e0e55fee7ec8f34c36e6299301d612a0de2ce.tar.gz JellySolutions-bb4e0e55fee7ec8f34c36e6299301d612a0de2ce.tar.bz2 JellySolutions-bb4e0e55fee7ec8f34c36e6299301d612a0de2ce.zip  | |
Redo login page
Diffstat (limited to '')
| -rw-r--r-- | ufund-ui/src/app/components/signup/signup.component.css | 42 | ||||
| -rw-r--r-- | ufund-ui/src/app/components/signup/signup.component.html | 2 | 
2 files changed, 43 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/signup/signup.component.css b/ufund-ui/src/app/components/signup/signup.component.css index 207135f..4073931 100644 --- a/ufund-ui/src/app/components/signup/signup.component.css +++ b/ufund-ui/src/app/components/signup/signup.component.css @@ -11,17 +11,19 @@  }  #box { +    animation: ease-in-out fadeIn .1s;      display: flex;      flex-direction: column;      max-width: 500px;      gap: 10px;      backdrop-filter: blur(10px);      background-color: color-mix(in srgb, var(--background-color), transparent 50%); -    padding: 30px; +    padding: 90px 30px;      border-radius: 5px;      border-style: solid;      border-width: 1px;      border-color: var(--highlight-color); +    z-index: 2;      & > div {          display: flex; @@ -85,3 +87,41 @@      }  } +h1 { +    margin-top: 0; +} + +#bg-cr { +    position: absolute; +    margin-top: -150px; +    top:0; +    width: 100vw; +    height: calc(100vh + 150px); +    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1)), url("/login-cr.jpg"); +    background-size: cover; +    opacity: calc(var(--opacity-cr)); +    z-index: 1; +} + +#bg-jf { +    position: absolute; +    top:0; +    width: 100vw; +    height: 100vh; +    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/login-jf.jpg"); +    /*backdrop-filter: brightness(1%);*/ +    background-size: cover; +    opacity: var(--opacity-jf); +    z-index: 1; +} + +@keyframes fadeIn { +    from { +        transform: translateY(-20px); +        opacity: 0 +    } +    to { +        opacity: 1 +    } +} + diff --git a/ufund-ui/src/app/components/signup/signup.component.html b/ufund-ui/src/app/components/signup/signup.component.html index ef2fc27..78f5099 100644 --- a/ufund-ui/src/app/components/signup/signup.component.html +++ b/ufund-ui/src/app/components/signup/signup.component.html @@ -26,3 +26,5 @@      </div>      <span>Already have an account? <a routerLink="/login">Log in</a></span>  </div> +<div id="bg-cr"></div> +<div id="bg-jf"></div>  | 
