diff --git a/djlearn/pages/static/css/landing.css b/djlearn/pages/static/css/base.css similarity index 72% rename from djlearn/pages/static/css/landing.css rename to djlearn/pages/static/css/base.css index 65e87af..a39e366 100644 --- a/djlearn/pages/static/css/landing.css +++ b/djlearn/pages/static/css/base.css @@ -20,53 +20,11 @@ p { margin: 0; } -.landing-bg { +.bg { background: url("/static/img/nasa_splash.jpg") no-repeat center center fixed; background-size: cover; } -.landing-main-text { - text-align: center; - margin: 1em; -} - -.landing-section { - min-height: 100vh; - width: 100vw; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; -} - -.landing-section-content { - width: 100vw; - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; - color: #ccc; -} - -.landing-section-content-inner { - width: 100vw; - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; - color: #ccc; -} - -/* -.landing-features { - background: ; -} - -.landing-feature { - -} -*/ - .shade { width: 100vw; display: flex; @@ -91,16 +49,6 @@ footer p { margin: 0.5em; } -.brand { - margin: 0; - color: #c55e00; - font-size: 3em; -} - -.brand-text { - color: gold; -} - .header { width: 100vw; display: flex; @@ -150,4 +98,14 @@ footer p { #logo-img { width: 50px; height: 50px; -} \ No newline at end of file +} + +.brand { + margin: 0; + color: #c55e00; + font-size: 3em; +} + +.brand-text { + color: gold; +} diff --git a/djlearn/pages/static/css/index.css b/djlearn/pages/static/css/index.css new file mode 100644 index 0000000..c762a9e --- /dev/null +++ b/djlearn/pages/static/css/index.css @@ -0,0 +1,31 @@ +.landing-main-text { + text-align: center; + margin: 1em; +} + +.landing-section { + min-height: 100vh; + width: 100vw; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} + +.landing-section-content { + width: 100vw; + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + color: #ccc; +} + +.landing-section-content-inner { + width: 100vw; + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + color: #ccc; +} diff --git a/djlearn/pages/static/css/login.css b/djlearn/pages/static/css/login.css index f85bbf6..906175f 100644 --- a/djlearn/pages/static/css/login.css +++ b/djlearn/pages/static/css/login.css @@ -1,39 +1,3 @@ -body { - font-family: monospace; - margin: 0; - overflow-x: hidden; - color: white; - min-height: 100vh; - display: flex; - flex-direction: column; -} - -::-webkit-scrollbar { - display: none; -} - -a { - color: lightcoral; -} - -p { - margin: 0; -} - -.login-bg { - background: url("/static/img/nasa_splash.jpg") no-repeat center center fixed; - background-size: cover; -} - -.shade { - width: 100vw; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - background: rgba(0,0,0,0.5); -} - .login-section { min-height: 100vh; width: 100vw; @@ -72,57 +36,3 @@ p { justify-content: space-between; margin: 0.5em 0.5em 0 0; } - -footer { - width: 100vw; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - font-size: 0.75rem; - position: absolute; - bottom: 0; -} - -footer p { - margin: 0.5em; -} - -.brand { - font-size: 2.5em; - margin: 0; - color: #c55e00; -} - - -.header { - width: 100vw; - display: flex; - flex-direction: row; - position: absolute; -} - -.header-link { - color: white; - margin: 1rem; - font-size: 1rem; - text-decoration: underline 0.1em #c55e00; - text-underline-offset: 0.1em; - transition: text-decoration-color 300ms, text-underline-offset 300ms; -} - -.header-link:hover { - text-decoration-color: red; - text-underline-offset: 0.2em; -} - -.header-text { - margin: 1rem 1rem 1rem auto; - font-size: 1rem; - color: #ccc; -} - -#logo { - width: 50px; - height: 50px; -} \ No newline at end of file diff --git a/djlearn/pages/templates/pages/base.html b/djlearn/pages/templates/pages/base.html new file mode 100644 index 0000000..f09119e --- /dev/null +++ b/djlearn/pages/templates/pages/base.html @@ -0,0 +1,55 @@ +{% load static %} + + + + + + {% block title %}PyHub{% endblock %} + + + + {% block extrahead %}{% endblock %} + + + +
+ +
+ +
+ Logo +
+ +
+ {% if user.is_authenticated %} + {{ user.username }} + + {% else %} +

You are not logged in

+ Log In + {% endif %} +
+ +
+ Sign in: + PyHub + Github + Twitter +
+
+ +
+ {% block content %} + {% endblock %} +
+ + + +
+ + + \ No newline at end of file diff --git a/djlearn/pages/templates/pages/index.html b/djlearn/pages/templates/pages/index.html index a0d0edf..bc3a95c 100644 --- a/djlearn/pages/templates/pages/index.html +++ b/djlearn/pages/templates/pages/index.html @@ -1,74 +1,46 @@ +{% extends 'pages/base.html' %} {% load static %} - - - - - PyHub - Landing - - - - +{% block title %}PyHub - Landing{% endblock %} - +{% block extrahead %} + +{% endblock %} -
- -
- Logo -
- -
- Test -
- -
- Sign in: - PyHub - Github - Twitter -
-
+{% block content %} -
-
-
-

<PyHub>

- -

- This is the PyHub landing Page -
- I can and will do everything i want here. -

-
-
+
+
+
+

<PyHub>

+ +

+ This is the PyHub landing Page +
+ I can and will do everything i want here. +

+
+
+
+ + +
+ +
+
+

Connect with Github

-
-
-

made using Django ❤️

-
-
- - -
- -
-
-

Connect with Github

-
- -
-

Connect with Twitter

-
-
- +
+

Connect with Twitter

+
- - \ No newline at end of file +
+ +{% endblock %} \ No newline at end of file diff --git a/djlearn/pages/templates/registration/login.html b/djlearn/pages/templates/registration/login.html index b88582e..56914e2 100644 --- a/djlearn/pages/templates/registration/login.html +++ b/djlearn/pages/templates/registration/login.html @@ -1,48 +1,33 @@ +{% extends 'pages/base.html' %} {% load static %} - - - - PyHub - Login - - - - - +{% block title %}PyHub - Login{% endblock %} -
-
- -
-
-
+{% block extrahead %} + +{% endblock %} -
-
+ +

Forgot your password? Click here to reset.

+ +
- - - - \ No newline at end of file +{% endblock %} \ No newline at end of file