diff --git a/frontend/styles.css b/frontend/styles.css index 71fd0b35..d6d08a75 100644 --- a/frontend/styles.css +++ b/frontend/styles.css @@ -48,4 +48,7 @@ #signup_form input[type=password]{ @apply rounded bg-charcoal text-white border border-slate w-full; } + #authpages #footerSignup { + @apply hidden; + } } diff --git a/static/css/styles.css b/static/css/styles.css index 224ff02d..b7ff3e62 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -699,6 +699,10 @@ input[type=file] { color: rgb(255 255 255 / var(--tw-text-opacity)); } +#authpages #footerSignup { + display: none; +} + *, ::before, ::after { --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; @@ -1201,10 +1205,6 @@ input[type=file] { width: auto; } -.w-1\/3 { - width: 33.333333%; -} - .w-1\/6 { width: 16.666667%; } @@ -1225,6 +1225,10 @@ input[type=file] { width: 66.666667%; } +.w-1\/3 { + width: 33.333333%; +} + .w-6 { width: 1.5rem; } @@ -1241,14 +1245,14 @@ input[type=file] { width: 20%; } -.w-\[200px\] { - width: 200px; -} - .w-1 { width: 0.25rem; } +.w-\[200px\] { + width: 200px; +} + .min-w-0 { min-width: 0px; } @@ -1331,10 +1335,6 @@ input[type=file] { align-items: center; } -.justify-end { - justify-content: flex-end; -} - .justify-center { justify-content: center; } @@ -1546,6 +1546,11 @@ input[type=file] { background-color: rgb(49 74 87 / var(--tw-bg-opacity)); } +.bg-orange { + --tw-bg-opacity: 1; + background-color: rgb(255 159 0 / var(--tw-bg-opacity)); +} + .bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); } @@ -1910,8 +1915,8 @@ input[type=file] { color: rgb(90 213 153 / var(--tw-text-opacity)); } -.text-white\/50 { - color: rgb(255 255 255 / 0.5); +.text-white\/70 { + color: rgb(255 255 255 / 0.7); } .text-slate { @@ -1934,19 +1939,10 @@ input[type=file] { color: rgb(181 201 211 / var(--tw-text-opacity)); } -.text-charcoal { - --tw-text-opacity: 1; - color: rgb(23 42 52 / var(--tw-text-opacity)); -} - .text-white\/60 { color: rgb(255 255 255 / 0.6); } -.text-white\/70 { - color: rgb(255 255 255 / 0.7); -} - .shadow { --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); @@ -2101,11 +2097,6 @@ input[type=file] { margin-bottom: 0px; } - .md\:mx-auto { - margin-left: auto; - margin-right: auto; - } - .md\:my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; @@ -2121,6 +2112,11 @@ input[type=file] { margin-bottom: 2.75rem; } + .md\:mx-auto { + margin-left: auto; + margin-right: auto; + } + .md\:mt-3 { margin-top: 0.75rem; } @@ -2185,10 +2181,6 @@ input[type=file] { width: 100%; } - .md\:w-1\/3 { - width: 33.333333%; - } - .md\:w-5\/6 { width: 83.333333%; } @@ -2217,6 +2209,10 @@ input[type=file] { width: 25%; } + .md\:w-1\/3 { + width: 33.333333%; + } + .md\:w-auto { width: auto; } @@ -2347,6 +2343,10 @@ input[type=file] { padding: 0px; } + .md\:p-5 { + padding: 1.25rem; + } + .md\:px-11 { padding-left: 2.75rem; padding-right: 2.75rem; diff --git a/templates/account/login.html b/templates/account/login.html index 1236d6c3..2ccdf688 100644 --- a/templates/account/login.html +++ b/templates/account/login.html @@ -6,6 +6,8 @@ {% block head_title %}{% trans "Login" %}{% endblock %} +{% block body_id %}id="authpages"{% endblock %} + {% block content %}
diff --git a/templates/account/signup.html b/templates/account/signup.html index f49ff965..939d7415 100644 --- a/templates/account/signup.html +++ b/templates/account/signup.html @@ -4,6 +4,8 @@ {% block head_title %}{% trans "Signup" %}{% endblock %} +{% block body_id %}id="authpages"{% endblock %} + {% block content %}
diff --git a/templates/base.html b/templates/base.html index 0a61bcc3..0a314e62 100644 --- a/templates/base.html +++ b/templates/base.html @@ -32,7 +32,7 @@ - +
{% include "includes/_header.html" %} diff --git a/templates/includes/_footer.html b/templates/includes/_footer.html index 12c6f668..b7675523 100644 --- a/templates/includes/_footer.html +++ b/templates/includes/_footer.html @@ -2,7 +2,7 @@