Skip to content

Commit c5caae1

Browse files
committedAug 29, 2014
Merge pull request #49 from rosskinner/master
week 6 to week 9 homework including burning airlines
2 parents 0c59476 + e630651 commit c5caae1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+32449
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
@import url(http://fonts.googleapis.com/css?family=Droid+Serif:400,700);
2+
3+
body {
4+
text-align:center;
5+
margin:0;
6+
7+
}
8+
9+
#staring-cat {
10+
margin:0 auto;
11+
width:600px;
12+
position:absolute;
13+
bottom:50px;
14+
left:20%;
15+
z-index: 0;
16+
}
17+
18+
#walking-cat {
19+
z-index:9;
20+
}
21+
22+
.content {
23+
width:100%;
24+
height:100vh;
25+
background-image: url(http://madetobeunique.com/stock/rooms-and-studio/floors/wood-floor-by-madetobeunique-4.png);
26+
background-size:cover;
27+
z-index: -5;
28+
29+
}
30+
31+
.container {
32+
width:100%;
33+
height:100vh;
34+
background-image: url(http://4.bp.blogspot.com/-i665snsos5I/TxxeW9Ht4fI/AAAAAAAACB0/EAf9TWm8DX8/s1600/cat+board.jpg);
35+
background-size:cover;
36+
z-index:-6;
37+
38+
}
39+
40+
h1 {
41+
z-index:10;
42+
text-align:left;
43+
width:300px;
44+
color: #FFF;
45+
font-family: 'Droid Serif', serif;
46+
font-size:5em;
47+
margin:0;
48+
padding-left:20px;
49+
}
50+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Cat Walk</title>
6+
<link rel="stylesheet" href="css/style.css">
7+
</head>
8+
<body>
9+
<div class="container">
10+
<div class="content">
11+
<iframe height="0" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/42679846&amp;auto_play=true&amp;hide_related=false&amp;show_comments=false&amp;show_user=false&amp;show_reposts=false&amp;visual=false"></iframe>
12+
13+
<h1>HAPPY BIRTHDAY JOEL!</h1>
14+
<img id="walking-cat" style="position:absolute; left: 0px; bottom: 50px; -webkit-transform: scaleX(-1); filter: FlipH;" src="http://www.anniemation.com/clip_art/images/cat-walk.gif">
15+
<!-- <img src="http://25.media.tumblr.com/14406fb11346aaa3cde5613e54ce2e59/tumblr_mhcwcr4oC51qgtfzjo1_250.gif" alt=""> -->
16+
<img id="staring-cat" src="http://pngimg.com/upload/cat_PNG1631.png" alt="">
17+
<!-- <img src="http://cdn2.scratch.mit.edu/get_image/user/2367436_60x60.png?v=1367996101.11" alt=""> -->
18+
<img id="jumping-cat" style="position:absolute; left:0px; bottom:0px; -webkit-transform: scaleX(-1)" src="http://pedigreepens.co.uk/wp-content/uploads/2011/10/KittenCareCat.png" alt="">
19+
</div>
20+
</div>
21+
22+
<script src="js/main.js"></script>
23+
</body>
24+
</html>

0 commit comments

Comments
 (0)
Please sign in to comment.