Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.
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
455 changes: 455 additions & 0 deletions css/main.css

Large diffs are not rendered by default.

527 changes: 527 additions & 0 deletions css/normalize.css

Large diffs are not rendered by default.

Empty file added img/.gitignore
Empty file.
Binary file added img/back.jpg
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/dots.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/four.jpg
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/one.jpg
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/three.jpg
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/two.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
128 changes: 121 additions & 7 deletions index.html
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,9 +1,123 @@
<!DOCTYPE html>
<html>
<head>
<title>So-and-so's Instructional Assignment</title>
</head>
<body>
YOUR CODE HERE
</body>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>4 seteps</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">

<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->

<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">

<script src="js/vendor/modernizr-2.6.2.min.js"></script>

<style>
html, body {
padding:0;
margin:0;
width:100%;
height:100%;
background-image: url('../img/back.png');
}

body {
overflow:auto;
}

h1 {
margin:0;
padding:0;
padding-top:2em;
font-family:sans-serif;
color:#fff;
text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

h3 {
font-size: 1em;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.7);
}

p {
font-size: 1em;
color: white;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

div {
width:100%;
height:100%;
background:#09f;
text-align:center;
}

.odd {
background:#f90;
}

#nav {
position:fixed;
}


div
{
width:640px;
height:100px;
background:white;
transition:width 2s;
-moz-transition:width 2s;
-webkit-transition:width 2s;
-o-transition:width 2s;
}

div:hover
{
width:1440px;
}


</style>
</head>


<body id="bodybg" style="text-align:center;" >

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>

<section id="links">
<ul id="nav">
<li><a href="#one">STEP1</a></li>
<li><a href="#two">STEP2</a></li>
<li><a href="#three">STEP3</a></li>
<li><a href="#four">STEP4</a></li>
</ul>
</section>


<div id="wrap">
<section id="one"><h1>STEP1</h1>
</section>

<section id="two"><h1>STEP2</h1>
</section>

<section id="three"><h1>STEP3</h1>
</section>

<section id="four"><h1>STEP4</h1>
</section>
</div>



</body>
</html>
1 change: 1 addition & 0 deletions js/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

24 changes: 24 additions & 0 deletions js/plugins.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Avoid `console` errors in browsers that lack a console.
(function() {
var method;
var noop = function () {};
var methods = [
'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
'timeStamp', 'trace', 'warn'
];
var length = methods.length;
var console = (window.console = window.console || {});

while (length--) {
method = methods[length];

// Only stub undefined methods.
if (!console[method]) {
console[method] = noop;
}
}
}());

// Place any jQuery/helper plugins in here.
4 changes: 4 additions & 0 deletions js/vendor/jquery-1.9.0.min.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions js/vendor/modernizr-2.6.2.min.js

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