From e96ea99b2b2ac281ce30569539e50c15620739d1 Mon Sep 17 00:00:00 2001 From: kiyagamm Date: Wed, 25 Jul 2018 20:13:08 +0300 Subject: [PATCH 1/2] my first --- getting_started.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 getting_started.txt diff --git a/getting_started.txt b/getting_started.txt new file mode 100644 index 0000000..e69de29 From f94f248979f1dce71b705622321a6493322550e4 Mon Sep 17 00:00:00 2001 From: tibetegya Date: Tue, 2 Oct 2018 13:19:50 +0300 Subject: [PATCH 2/2] Add template for the page --- website/website/templates/css/style.css | 63 +++++++++++++++++++++++++ website/website/templates/index.html | 28 +++++++++++ 2 files changed, 91 insertions(+) create mode 100644 website/website/templates/css/style.css create mode 100644 website/website/templates/index.html diff --git a/website/website/templates/css/style.css b/website/website/templates/css/style.css new file mode 100644 index 0000000..e446ef1 --- /dev/null +++ b/website/website/templates/css/style.css @@ -0,0 +1,63 @@ +*{ + box-sizing: border-box; +} +body{ + margin: 0; + font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif +} +.row{ + width: 100%; + /* border: 1px solid red; */ +} + +.navbar{ + height: 100px; + position: sticky; + top: 0px; + display: flex; + align-items: center; + z-index: 1000; + justify-content: space-around; + /* padding: 0px 40px 0px 40px; */ + background: white; +} +.navbar img { + background: #333; + width: 40px; + height: 40px; +} +.navbar ul{ + display: flex; + list-style: none; +} +.navbar a{ + text-decoration: none; + padding: 0px 20px 0px 20px; + color: #333; +} + +.hero{ + height: 400px; + border: 1px solid blue; +} +.description{ + height: 400px; +} +.events{ + height: 400px; +} +.map{ + height: 600px; + +} +.become-member{ + + height: 400px; +} +.footer{ + + height: 200px; +} +.top-off{ + padding-top: 100px; +} \ No newline at end of file diff --git a/website/website/templates/index.html b/website/website/templates/index.html new file mode 100644 index 0000000..25a41f4 --- /dev/null +++ b/website/website/templates/index.html @@ -0,0 +1,28 @@ + + + + + + + + Document + + + +
+
about
+
events
+
map
+
become member
+ + + \ No newline at end of file