diff options
author | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-29 15:28:59 -0400 |
---|---|---|
committer | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-29 15:28:59 -0400 |
commit | 785d0df231d0cfdbf63f5ed60b56fb882f694725 (patch) | |
tree | 4149a2005b945b0e96ac6388b7078892934383b2 /ufund-ui/src/app/components/signup/signup.component.css | |
parent | 451a9abd5a4c461ccbb0b7b7d51b78dbfe12ec54 (diff) | |
download | JellySolutions-785d0df231d0cfdbf63f5ed60b56fb882f694725.tar.gz JellySolutions-785d0df231d0cfdbf63f5ed60b56fb882f694725.tar.bz2 JellySolutions-785d0df231d0cfdbf63f5ed60b56fb882f694725.zip |
Finished implementing signup page and checked for the majority of edge cases.
Diffstat (limited to 'ufund-ui/src/app/components/signup/signup.component.css')
-rw-r--r-- | ufund-ui/src/app/components/signup/signup.component.css | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/ufund-ui/src/app/components/signup/signup.component.css b/ufund-ui/src/app/components/signup/signup.component.css index 799cbd2..2fa5051 100644 --- a/ufund-ui/src/app/components/signup/signup.component.css +++ b/ufund-ui/src/app/components/signup/signup.component.css @@ -16,16 +16,27 @@ } #bar { + height: 5px; width: 100%; - height: 20px; - -webkit-appearance: none; appearance: none; - border: none; - border-radius: 10px; overflow: hidden; - background-color: red; + margin-top: -5px; } -#requirement2 { +#bar::-webkit-progress-bar { + background-color: lightgray; + transition: width 0.5s ease-in-out, background-color 0.5s ease-in-out; +} + +.color0::-webkit-progress-value { background: rgba(255, 0 ,0, 1); transition: background-color 0.5s ease-in-out, width 0.5s ease-in-out; } +.color1::-webkit-progress-value { background: rgba(255, 0 ,0, 1); transition: background-color 0.5s ease-in-out, width 0.5s ease-in-out; } +.color2::-webkit-progress-value { background: rgba(255, 165, 0, 1); transition: background-color 0.5s ease-in-out, width 0.5s ease-in-out; } +.color3::-webkit-progress-value { background: rgba(255, 255, 0, 1); transition: background-color 0.5s ease-in-out, width 0.5s ease-in-out; } +.color4::-webkit-progress-value { background: rgba(173, 255, 47, 1); transition: background-color 0.5s ease-in-out, width 0.5s ease-in-out; } +.color5::-webkit-progress-value { background: rgba(50, 205, 50, 1); transition: background-color 0.5s ease-in-out, width 0.5s ease-in-out; } +.color6::-webkit-progress-value { background: rgba(0, 128, 0, 1); transition: background-color 0.5s ease-in-out, width 0.5s ease-in-out; } + +#requirement2, #statusText, #passwordStatusText, #usernameStatusText { color: red; } + |