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 @@ -5,7 +5,103 @@ light blue: #1c5380
*/

body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-family: "Proxima Nova", Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 0;
}

h2 {
color: #1c5380
}

div#gradient {
background: url("../img/bgtile.png");
background-repeat: repeat;
width: 100%;
height: 300px;
z-index: +1
}

.wrapper {
top: 100px;
left: 300px;
display: inline-block;
position: relative;
}

.iphone {
float:left;
}

.display {
width: 35vw;
}
#display-area {
margin-left: 30px;
padding: 10px;
display: inline-block;
float: right;
}

#logo-image {
float: left;
}

#login-display {
width: 80px;
height: 35px;
background-image: linear-gradient(to top, #124f74, #a3bfe4);
display: block;
padding: 10px;
margin-top: 10px;
border-radius: 5px;
margin-left: 5px;
float: right;
align-items: flex-start;
position: relative;
}

#home-img {
margin-top: 5px
}

#login {
color: #e6eded;
font-weight: bold;
margin-left: 2px;
margin-bottom: 5px;
}

#brand-display-area {
float:left;
width: 35vw;
padding: 5px;
}

#text-display {
width:100%;
height: 100%;
padding: 10px 30px 10px 30px;
background-color: white;
border-radius: 5px;
margin-top: 100px;
box-shadow: -2px -2px 5px #969ca2;
}

div#footer {
display: inline-block;
position: absolute;
top: 90%;
left: 20%;
text-align: center;
width: 70vw;
}

#footer a {
color: #1c5380;
font-size: 0.8rem;
font-weight: bold;
text-transform: uppercase;
text-decoration: none;
padding: 5px
}
72 changes: 51 additions & 21 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,63 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Instagram</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
Instagram

Capture and Share the World's Moments

Instagram is a fast, beautiful and fun way to share your life with friends and family.

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?

Download on the App Store
Get it on Google Play
<body>
<div id="gradient">
<div class="wrapper">
<div class="iphone">
<img src="./img/phones.png" alt="">

About Us
Support
Blog
Press
API
Jobs
Privacy
Terms
</div>
<div class="display" id="display-area">
<div class="display" id="brand-display-area">
<img src="./img/brand.png" id="logo-image" alt="">
<div class="display" id="login-display">
<img src="./img/home.png" alt="" id="home-img">
<span id="login">Log In</span>
</div>
</div>
<div class="display" id="text-display">
<h2>Capture and Share the World's Moments
</h2>
<p>
Instagram is a fast, beautiful and fun way to share your life with friends and family.
</p>
<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>
<p>
Oh yeah, did we mention it's free?
</p>
<br>
<br>
<br>
<img src="./img/badge-iphone.png" alt="">
<img src="./img/badge-android.png" alt="">

&copy; 2014 Instagram
</div>
</div>
</div>
</div>
<div class="display" id="footer">
<p>
<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>
&copy; 2014 Instagram
</p>
</div>
</body>

</html>