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
145 changes: 145 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,149 @@ body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
margin: 0;
background
}

/*header {
background: linear-gradient(rgba(59,89,152,0.8), rgb(59,89,152,1));
height: 300px;
width: 100%;
}*/

h1.logo {
color: white;
font-family: 'Pacifico', cursive;
font-weight: 100;
display: block;
position: absolute;
top: 120px;
left: 50%;
}

div.background {
height: 400px;
width: 100%;
background-image: url(../img/bgtile.png);
background-size: auto 300px;
background-repeat: repeat-x;
position: fixed;
}

div.center-box {
position: relative;
width: 60%;
top: 110px;
/*left: 100px;*/
margin: 0 auto;
}

div.phones {
display: inline-block;
position: relative;
width: 40%;
float: left;
}

div.right-box {
display: inline-block;
position: relative;
width: 60%;
/*float: right;*/
}

div.brand {
display: inline-block;
position: relative;
float: left;
top: 20px;
/*left: 50px;*/
}

div.login {
display: inline-block;
position: relative;
/*float: right;*/
top: 37px;
left: 60px;
height: 42px;
width: 120px;
background: linear-gradient(rgba(83, 135, 178, 0.7), rgb(83, 135, 178, 1));
border-radius: 5px;
border: 1px solid #3a5787;
padding: 0;
color: white;
}

div.login img {
vertical-align: sub;
margin-right: 10px;
}

div.login p {
text-align: center;
font-weight: 600;
display: inline-block;
position: relative;
left: 15px;
top: -5px;
}

div.login a {
color: white;
text-decoration: none;
}

div.caption {
display: inline-block;
position: relative;
clear: both;
top: 36px;
height: 380px;
width: 440px;
background-image: url(../img/frame.png);
background-size: auto;
background-repeat: no-repeat;
padding: 20px 40px;
}

div.caption h2 {
color: #223759;
}

div.caption p {
line-height: 1.6;
}

span {
color: #223759;
font-weight: 600;
}

img.download {
margin-right: 20px;
}

div.footer {
position: relative;
clear: both;
top: 60px;
}

ul {
margin: 0 auto;
padding: 0 120px;
}

li {
display: inline-block;
margin-left: 20px;
color: rgb(182, 186, 193);
text-transform: uppercase;
font-size: 10px;
font-weight: 600;
}

li a {
color: rgb(83, 135, 178);
text-decoration: none;
}
69 changes: 53 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,67 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Instagram</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet">
</head>
<body>
Instagram
<!-- <header></header> -->
<div class="background"></div>

<div class="center-box clearfix">

<div class="phones">

<img class="phones" src="img/phones.png">

</div>

Capture and Share the World's Moments
<div class="right-box">

Instagram is a fast, beautiful and fun way to share your life with friends and family.
<div class="brand">
<img class="brand" src="img/brand.png">
</div>

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.
<div class="login">
<p><img class="home" src="img/home.png"> <a href="#">Log in</a></p>
</div>

Oh yeah, did we mention it's free?
<div class="caption">

Download on the App Store
Get it on Google Play
<h2>Capture and Share<br> the World's Moments</h2>

About Us
Support
Blog
Press
API
Jobs
Privacy
Terms
<p>Instagram is a <span>fast</span>, <span>beautiful</span> and <span>fun</span> 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>

<img class="download" src="img/badge-iphone.png">
<img src="img/badge-android.png">

</div>

</div>

<div class="footer">

<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Press</a></li>
<li><a href="#">Api</a></li>
<li><a href="#">Jobs</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Terms</a></li>
<li>&copy; 2014 Instagram</li>
</ul>

</div>

</div>



&copy; 2014 Instagram
</body>
</html>