Skip to content

Commit

Permalink
Added a first draft of the site (with css and ssi) and pushed to server
Browse files Browse the repository at this point in the history
  • Loading branch information
alnopa9 committed Feb 10, 2019
1 parent 3fe78af commit 3c5e6d9
Show file tree
Hide file tree
Showing 17 changed files with 185 additions and 0 deletions.
17 changes: 17 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="banksy.css" />
<link rel="icon" href="heart.png"/>
<title>Banksy | About</title>
</head>
<body>
<!-- SSI line below-->
<!--#include virtual="top.html" -->
<div class="body-container">
<h1>Under Construction!</h1>
<p>This site is a work in progress</p>
</div>
</body>
</html>
60 changes: 60 additions & 0 deletions banksy.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
html {
background: url(img/background.png);
background-attachment: fixed;
background-size: cover;
}
.body-container{
position: fixed;
top: 10vH;
left: 10%;
width: 80%;
height: 80vH;
padding-top: 40px;
margin: auto;
text-align: center;
background-color: #ffffff;
border: 1px solid #000000;
overflow: scroll;
}
.menu-container{
position: fixed;
top: 0vH;
width: 80%;
font-size: 1.25em;
left: 10%;
}
.menu{
display: flex;
justify-content: space-around;
flex-direction: row;
align-items: center;
}
.logo-container{
display: flex;
justify-content: flex-end;
width: 35%;
}
.menu-buttons{
display: flex;
justify-content: space-around;
width: 65%;
}
.side-bars{
position: fixed;
top: 0vH;
width: 100%;
}
.left-side{
position: fixed;
top: 10vH;
left: 1%;
width: 9%;
height: 100%;
}
.right-side{
position: fixed;
top: 60vH;
right: 0px;
width: 10%;
height: 100%;
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
17 changes: 17 additions & 0 deletions github.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="banksy.css" />
<link rel="icon" href="heart.png"/>
<title>Banksy | Github</title>
</head>
<body>
<!-- SSI line below-->
<!--#include virtual="top.html" -->
<div class="body-container">
<h1>Under Construction!</h1>
<p>This site is a work in progress</p>
</div>
</body>
</html>
Binary file added img/background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/girl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/heart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="banksy.css" />
<link rel="icon" href="img/heart.png"/>
<title>Banksy | Home</title>
</head>
<body>
<!-- SSI line below-->
<!--#include virtual="top.html" -->
<div class="body-container">
<h1>Under Construction!</h1>
<p>This site is a work in progress</p>
</div>
</body>
</html>
17 changes: 17 additions & 0 deletions map.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="banksy.css" />
<link rel="icon" href="heart.png"/>
<title>Banksy | Map</title>
</head>
<body>
<!-- SSI line below-->
<!--#include virtual="top.html" -->
<div class="body-container">
<h1>Under Construction!</h1>
<p>This site is a work in progress</p>
</div>
</body>
</html>
17 changes: 17 additions & 0 deletions team.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="banksy.css" />
<link rel="icon" href="heart.png"/>
<title>Banksy | Team</title>
</head>
<body>
<!-- SSI line below-->
<!--#include virtual="top.html" -->
<div class="body-container">
<h1>Under Construction!</h1>
<p>This site is a work in progress</p>
</div>
</body>
</html>
17 changes: 17 additions & 0 deletions timeline.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="banksy.css" />
<link rel="icon" href="img/heart.png"/>
<title>Banksy | Timeline</title>
</head>
<body>
<!-- SSI line below-->
<!--#include virtual="top.html" -->
<div class="body-container">
<h1>Under Construction!</h1>
<p>This site is a work in progress</p>
</div>
</body>
</html>
23 changes: 23 additions & 0 deletions top.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<div class="menu-container">
<div class="menu">
<div class="logo-container">
<img src="img/logo.png" alt="Banksy Logo"/>
</div>
<div class="menu-buttons">
<a href="index.html">HOME</a>
<a href="about.html">ABOUT</a>
<a href="map.html">MAP</a>
<a href="timeline.html">TIMELINE</a>
<a href="team.html">ABOUT TEAM</a>
<a href="github.html">GITHUB</a>
</div>
</div>
</div>
<div class="side-bars">
<div class="left-side">
<img src="img/heart.png" alt="Banksy's Girl with Balloon Red Balloon" height="200"/>
</div>
<div class="right-side">
<img src="img/girl.png" alt="Banksy's Girl with Balloon Girl" height="250"/>
</div>
</div>

0 comments on commit 3c5e6d9

Please sign in to comment.