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
98 changes: 97 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,101 @@ light blue: #1c5380
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 0;
background-image: url("../img/bgtile.png");
background-repeat: repeat-x;
}

h2 {
color: #06365f;
}

footer {
text-align: center;
font-size: 12px;
padding: 30px;
text-transform: uppercase;
}

footer a {
margin-right: 10px;
color: #06365f;
text-decoration: none;
font-weight: bold;
}

footer span {
color: #999999;
}

.phones {
position: absolute;
padding: 80px 0 0 80px;
display: inline-block;
}

.pageData{
position: relative;
top: 80px;
left: 450px;
width: 400px;
height: 600px;
}

#logIn {
color: white;
font-weight: bold;
background-color: #2e455d;
text-align: center;
padding: 5px 8px;
width: 110px;
border: 2px solid #2b425a;
position: absolute;
top: 20px;
left: 385px;
}

#logInText {
position: relative;
top: -5px;
}

#logIn img {
margin: 5px 8px 0 0;
}

#brandLogo {
}

.frame {
width: 420px;
background-color: white;
padding: 5px 30px;
position: relative;
top: -270px;
left: 12px;
}

.frameImage {

}

.download {
margin-top: 30px;

}

.download img {
margin: 0 20px 0 0;
}

@media only screen and (max-width: 320px) {
.phones {
display: none;
}

.pageData {
top: 30px;
left: 30px;
}
}

49 changes: 33 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,47 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Instagram</title>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
Instagram

Capture and Share the World's Moments
<div class="phones">
<img src="img/phones.png">
</div>
<div class="pageData">
<img id="brandLogo" src="img/brand.png">
<button id="logIn"><img src="img/home.png"><span id="logInText">Log in</span></button>

Instagram is a fast, beautiful and fun way to share your life with friends and family.
<img class="frameImage" src="img/frame.png">
<div class="frame">
<h2>Capture and Share<br>the World's Moments</h2>

Take a picture or video, choose a filter to transform its look and feel, then post to Instagram &mdash; it's that easy. You can even share to Facebook, Twitter, Tumblr and more. It's a new way to see the world.

Oh yeah, did we mention it's free?
<p>Instagram is a <b>fast</b>, <b>beautiful</b> and <b>fun</b> way to share your life with friends and family.</p>

Download on the App Store
Get it on Google Play
<p>Take a picture or video, choose a filter to transform its look and feel, then post to Instagram &mdash; it's that easy. You can even share to Facebook, Twitter, Tumblr and more. It's a new way to see the world.</p>

About Us
Support
Blog
Press
API
Jobs
Privacy
Terms
<p>Oh yeah, did we mention it's free?</p>

&copy; 2014 Instagram
<div class="download">
<a href="#"><img src="img/badge-iphone.png"></a>
<a href="#"><img src="img/badge-android.png"></a>
</div>
</div>
</div>

<footer>
<a href="#">About Us</a>
<a href="#">Support</a>
<a href="#">Blog</a>
<a href="#">Press</a>
<a href="#">API</a>
<a href="#">Jobs</a>
<a href="#">Privacy</a>
<a href="#">Terms</a>


<span id="copyright">&copy; 2014 Instagram</span>
</footer>
</body>
</html>