Skip to content

Commit

Permalink
added rough header with links
Browse files Browse the repository at this point in the history
  • Loading branch information
cemmanuel1 committed Oct 21, 2013
1 parent a2caca1 commit 4923fb1
Show file tree
Hide file tree
Showing 7 changed files with 85 additions and 1 deletion.
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
rack (1.5.2)

Expand Down
Binary file added public/.DS_Store
Binary file not shown.
27 changes: 27 additions & 0 deletions public/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
header {
text-align: center;
}

header h1 {
font-size: 70px;
}

header h2 {
text-decoration: none;
}
header img {
margin: 40px 0px 20px 0px;
border: 5px solid white;
border-radius: 20px;
}
header a {
color: white;
}
header ul {
padding: 10px;
background: rgba(0,0,0,1);
}
header li {
display: inline;
padding: 0px 10px 0px 10px;
}
24 changes: 24 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<html>
<head>
<title>Algorithms and Interview Prep</title>
<script src="scripts/index.js"></script>
<script type="text/javascript" src="skrollr.min.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Women Who Code</h1>
<h2>Algorithms and Interview Prep Resources</h2>
<ul>
<li><a href="#about" class="smoothScroll"> About</a> </li>
<li><a href="#whiteboard" class="smoothScroll"> Whiteboard Problems</a> </li>
<li><a href="#mock" class="smoothScroll"> Mock Interview Questions</a> </li>
<li><a href="#resources" class="smoothScroll"> Other Resources</a> </li>
<li><a href="#contact" class="smoothScroll"> Contact Us</a> </li>
</ul>
<!-- </nav> -->
</header>
</body>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="js/smoothscroll.js"></script>
</html>
Binary file added public/js/.DS_Store
Binary file not shown.
33 changes: 33 additions & 0 deletions public/js/smoothscroll.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4923fb1

Please sign in to comment.