Skip to content
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
9 changes: 9 additions & 0 deletions about.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php $title = "About Us";
include("includes/header.php"); ?>

<main role="main">

</main>


<?php include("includes/footer.php"); ?>
9 changes: 9 additions & 0 deletions contact.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php $title = "Contact Us";
include("includes/header.php"); ?>

<main role="main">

</main>


<?php include("includes/footer.php"); ?>
Binary file not shown.
45 changes: 45 additions & 0 deletions css/backup.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
@@ -0,0 +1,44 @@
html, body {
min-height:100%;
width:100%;
}
.mainnav {
width:100%;
height:50px;
position:absolute;
}
.desktopnav {
display:block;
}
.mobilenav {
display:none;
}
@media (max-width:768px){
.desktopnav {
display:none;
}
.mobilenav {
display:block;
}
button.navtoggle {
display:block;
position: absolute;
top: 15px;
right: 15px;
border: 0;
text-indent: 200%;
overflow: hidden;
background: rgba(255,255,255,.8) url(../images/navbutton.png) center no-repeat;
border: 1px solid #ddd;
border-radius: 3px;
background-size: 80%;
width: 30px;
height: 30px;
outline: none;
transition: all 400ms ease;
&.expanded
transform: rotate(90deg);
background-color: transparent;
border: 0;
}
}
Loading