diff --git a/public/css/style.css b/public/css/style.css index d856b45..cd6a69b 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -388,3 +388,43 @@ button#login-btn:hover { .text-white { color: #ffffff !important; } + +/* Login Screen Styles */ +#login-screen-container { + background: inherit; + transition: opacity 0.3s ease-in-out; +} + +#login-screen-container h1 { + text-shadow: 0 2px 4px rgba(0,0,0,0.1); +} + +/* Main App Container Styles */ +#main-app-container { + opacity: 1; + transition: opacity 0.3s ease-in-out; + width: 100%; +} + +#main-app-container.hidden { + opacity: 0; + pointer-events: none; +} + +/* Loading States */ +#login-loading { + transition: opacity 0.3s ease-in-out; +} + +/* Dark Mode for Login Screen */ +.dark-mode #login-screen-container { + color: #f5f5f5; +} + +.dark-mode #login-screen-container h1 { + color: var(--primary-text-color) !important; +} + +.dark-mode #login-loading p { + color: #d1d5db !important; +} diff --git a/public/css/tailwind.css b/public/css/tailwind.css index 6555c0e..1c9ea42 100644 --- a/public/css/tailwind.css +++ b/public/css/tailwind.css @@ -631,6 +631,10 @@ video { margin-bottom: 1.5rem; } +.mb-8 { + margin-bottom: 2rem; +} + .ml-2 { margin-left: 0.5rem; } @@ -980,6 +984,11 @@ video { padding-right: 1.5rem; } +.px-8 { + padding-left: 2rem; + padding-right: 2rem; +} + .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; @@ -1017,6 +1026,11 @@ video { line-height: 2.25rem; } +.text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; +} + .text-lg { font-size: 1.125rem; line-height: 1.75rem; @@ -1049,11 +1063,6 @@ video { font-weight: 600; } -.text-blue-600 { - --tw-text-opacity: 1; - color: rgb(37 99 235 / var(--tw-text-opacity, 1)); -} - .text-gray-500 { --tw-text-opacity: 1; color: rgb(107 114 128 / var(--tw-text-opacity, 1)); @@ -1123,6 +1132,12 @@ video { opacity: 0.6; } +.shadow-lg { + --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + .shadow-md { --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); @@ -1616,10 +1631,6 @@ body.dark-mode.bg-gray-100 { background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1)); } -.hover\:underline:hover { - text-decoration-line: underline; -} - .focus\:border-orange-500:focus { --tw-border-opacity: 1; border-color: rgb(252 151 41 / var(--tw-border-opacity, 1)); @@ -1705,6 +1716,11 @@ body.dark-mode.bg-gray-100 { line-height: 2.5rem; } + .md\:text-6xl { + font-size: 3.75rem; + line-height: 1; + } + .md\:text-base { font-size: 1rem; line-height: 1.5rem; diff --git a/public/index.html b/public/index.html index 4a6bb87..1ee996e 100644 --- a/public/index.html +++ b/public/index.html @@ -28,26 +28,41 @@ - -
- - -
+ +
+
+

+ Runway Gen4 +

+ + +
- -
-

- Runway Gen4 Web App -

-
+ +