diff --git a/iqps/static/assets/formpage.css b/iqps/static/assets/formpage.css index f6e94e3..9de5b2e 100644 --- a/iqps/static/assets/formpage.css +++ b/iqps/static/assets/formpage.css @@ -21,24 +21,24 @@ html, body{ flex-direction: column; justify-content: center; - background-color: white; + background-color:#5eff9d; - border-color: black; - border-width: 2px; + border-color: #d9d8d8; + border-width: 0px; border-style: solid; - padding-left: 30px; - padding-right: 30px; - padding-top: 20px; - padding-bottom: 20px; + padding-left: 14px; + padding-right: 14px; + padding-top: 36px; + padding-bottom: 35px; } .submit-btn{ - margin-top: 5px; - margin-top: 5px; - background-color: rgb(16, 165, 224); - color: rgb(210, 224, 16); + margin-top: 20px; + margin-bottom: 17px; + background-color: #0062cc; + color: rgb(255, 255, 255); font-weight: bold; display: block; padding-top: 5px; @@ -46,16 +46,16 @@ html, body{ width: max-content; margin-left: auto; margin-right: auto; - border-width: 1px; - border-color: rgb(36, 7, 250); + border-width: 0px; + border-color: #0062cc; outline: 0; } label, small, .errorlist{ font-family: Monospace; - color: red; - padding-top: 5px; - padding-bottom: 5px; + color: black; + padding-top: 12px; + padding-bottom: 18px; list-style-type: none; } @@ -69,7 +69,7 @@ input{ border-width: 1px; border-style: solid; border-color: black; - padding-bottom: 5px; + padding-bottom: 12px; } .helptext{ @@ -81,3 +81,10 @@ input{ width: max-content; margin: auto; } + +.header { + text-align: center; + } +.stext { + text-align: center; +} \ No newline at end of file diff --git a/iqps/static/assets/main.css b/iqps/static/assets/main.css index d1a2517..718ca04 100644 --- a/iqps/static/assets/main.css +++ b/iqps/static/assets/main.css @@ -57,7 +57,8 @@ body{ margin: auto; border-width: 2px; border-style: solid; - border-color: rgb(8, 5, 37); + border-color: rgb(200, 200, 200); + font-size: 22px; padding: 8px; overflow: hidden; @@ -109,5 +110,3 @@ body{ font-family: monospace; color: navy; } - - diff --git a/iqps/templates/base.html b/iqps/templates/base.html index 01269fc..fdf1b28 100644 --- a/iqps/templates/base.html +++ b/iqps/templates/base.html @@ -7,7 +7,7 @@ - {% block content %}{% endblock %} + {% block content %}{% endblock %} diff --git a/iqps/templates/login.html b/iqps/templates/login.html index 8d4ec8b..5bc839a 100644 --- a/iqps/templates/login.html +++ b/iqps/templates/login.html @@ -8,12 +8,12 @@ {% block content %} {% include 'navbar.html' %}
-

Login to iQPS

+

Login to iQPS

{% csrf_token %} {{ form }} - Don't have an account? Register! + Don't have an account? Register!
{% endblock %} diff --git a/iqps/templates/register.html b/iqps/templates/register.html index 4378f98..4d3b2cc 100644 --- a/iqps/templates/register.html +++ b/iqps/templates/register.html @@ -8,13 +8,13 @@ {% block content %} {% include 'navbar.html' %}
-

Register in iQPS

+

Register in iQPS

{% csrf_token %} {{ form }} - Already have an account? Login + Already have an account? Login
{% endblock %}