From b0956874d8d677f11c4531adc046a8a2f38b9f32 Mon Sep 17 00:00:00 2001 From: Alex Noel Date: Sat, 16 Feb 2019 13:14:10 -0500 Subject: [PATCH] Starter html and page templating --- .gitignore | 5 +++++ about.html | 37 +++++++++++++++++++++++++++++++++++++ icon.svg | 9 +++++++++ index.html | 38 ++++++++++++++++++++++++++++++++++++++ logo.svg | 10 ++++++++++ style.css | 41 +++++++++++++++++++++++++++++++++++++++++ 6 files changed, 140 insertions(+) create mode 100644 .gitignore create mode 100644 about.html create mode 100644 icon.svg create mode 100644 index.html create mode 100644 logo.svg create mode 100644 style.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e915029 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +################################################################################ +# This .gitignore file was automatically created by Microsoft(R) Visual Studio. +################################################################################ + +/.vs diff --git a/about.html b/about.html new file mode 100644 index 0000000..5513358 --- /dev/null +++ b/about.html @@ -0,0 +1,37 @@ + + + + + + + + + +
+
+ + + +
+ +
+ + \ No newline at end of file diff --git a/icon.svg b/icon.svg new file mode 100644 index 0000000..2b54e72 --- /dev/null +++ b/icon.svg @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..1455b65 --- /dev/null +++ b/index.html @@ -0,0 +1,38 @@ + + + + + + + + + +
+
+ + + +
+ +
+ + + \ No newline at end of file diff --git a/logo.svg b/logo.svg new file mode 100644 index 0000000..8eaf78e --- /dev/null +++ b/logo.svg @@ -0,0 +1,10 @@ + + + + + + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..ed2afcc --- /dev/null +++ b/style.css @@ -0,0 +1,41 @@ +#header-bar { + height: 70px; + width: 100%; + background-color: rgb(208, 208, 208); +} +#header-title { + width: 30%; + padding-left: 20px; + font-size: 25px; +} +#icon { + height: 60px; +} +#navigation { + width: 70%; + padding-right: 20px !important; + +} +.nav-sep { + position: relative; + left: 10px; + top: 6px; + padding-left: 20px; + border-left: 2px solid #232323; + height: 30px; +} +a { + color: #232323; + text-decoration: none; +} +a:hover { + color: rgb(57, 163, 225); + text-decoration: none; +} +.nav-item { + padding: 5px; + font-size: 20px; +} +body { + background-color: rgb(242, 242, 242); +} \ No newline at end of file