Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds Templates to match the designs #13

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added getting_started.txt
Empty file.
63 changes: 63 additions & 0 deletions website/website/templates/css/style.css
Original file line number Diff line number Diff line change
@@ -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;
}
28 changes: 28 additions & 0 deletions website/website/templates/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div class="navbar row">
<img src="" alt="" class="logo">
<ul class="navlinks">
<li><a href="#about">About</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#become-member">Become a Member</a></li>
<li><a href="/login.html">Login</a></li>

</ul>
</div>
<div class="hero row top-off"></div>
<div class="description row top-off" id="about">about</div>
<div class="events row top-off" id="events"> events</div>
<div class="map row top-off">map</div>
<div class="become-member top-off" id="become-member">become member</div>
<div class="footer">footer</div>
</body>
</html>