From 735f16fe70f6f1d182d42d1f5161fe2aebe6aa6d Mon Sep 17 00:00:00 2001 From: Blaise Thompson Date: Sat, 9 Nov 2019 19:41:30 -0600 Subject: initial commit --- app/templates/inventory.html | 16 ++++++++++ app/templates/jobs.html | 19 +++++++++++ app/templates/layout.html | 15 +++++++++ app/templates/main.css | 76 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 126 insertions(+) create mode 100644 app/templates/inventory.html create mode 100644 app/templates/jobs.html create mode 100644 app/templates/layout.html create mode 100644 app/templates/main.css (limited to 'app/templates') diff --git a/app/templates/inventory.html b/app/templates/inventory.html new file mode 100644 index 0000000..d995835 --- /dev/null +++ b/app/templates/inventory.html @@ -0,0 +1,16 @@ +{% extends "layout.html" %} +{% block content %} + +
+ +
+ jobs + inventory +
+
+ +

inventory

+ +

This website was built with Python via the Flask framework.

+ +{% endblock %} diff --git a/app/templates/jobs.html b/app/templates/jobs.html new file mode 100644 index 0000000..59d4ba8 --- /dev/null +++ b/app/templates/jobs.html @@ -0,0 +1,19 @@ +{% extends "layout.html" %} +{% block content %} + +
+ +
+ jobs + inventory +
+
+ + +

jobs

+

This website was built with Python via the Flask framework.

+ +{{ df|safe }} + + +{% endblock %} diff --git a/app/templates/layout.html b/app/templates/layout.html new file mode 100644 index 0000000..e63f746 --- /dev/null +++ b/app/templates/layout.html @@ -0,0 +1,15 @@ + + + + + + + + +
+ {% block content %} + {% endblock %} +
+ + + diff --git a/app/templates/main.css b/app/templates/main.css new file mode 100644 index 0000000..8ad1c3e --- /dev/null +++ b/app/templates/main.css @@ -0,0 +1,76 @@ +body { + margin: 0; + padding: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + color: #444; +} +/* + * Formatting the header area + */ +header { + background-color: #DFB887; + height: 35px; + width: 100%; + opacity: .9; + margin-bottom: 10px; +} +header h1.logo { + margin: 0; + font-size: 1.7em; + color: #fff; + text-transform: uppercase; + float: left; +} +header h1.logo:hover { + color: #fff; + text-decoration: none; +} +/* + * Centering the body content + */ +.container { + width: 1200px; + margin: 0 auto; +} +div.home { + padding: 10px 0 30px 0; + background-color: #E6E6FA; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} +div.about { + padding: 10px 0 30px 0; + background-color: #E6E6FA; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} +h2 { + font-size: 3em; + margin-top: 40px; + text-align: center; + letter-spacing: -2px; +} +h3 { + font-size: 1.7em; + font-weight: 100; + margin-top: 30px; + text-align: center; + letter-spacing: -1px; + color: #999; +} +.menu { + float: right; + margin-top: 8px; +} +.menu li { + display: inline; +} +.menu li + li { + margin-left: 35px; +} +.menu li a { + color: #444; + text-decoration: none; +} -- cgit v1.2.3