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
50 changes: 45 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,52 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Instagram Clone</title>
<!-- don't forget to link your styles -->
<link rel="stylesheet" href="./styles/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 About Us Support Blog Press API
Jobs Privacy Terms &copy; 2014 Instagram
<main>
<div class="mobile_container">
<img src="./images/phones.png" alt="Mobil phone preview">
</div>
<div class="info_container">
<div class="logo">
<img src="./images/brand.png" alt="Instagram logo">
</div>
<div class="log_in">
<button><img src="./images/home.png" alt="Home button"> Log in</button>
</div>
<div class="info_text">
<h1>
Capture and Share<br>the World's Moments
</h1>
<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>
<div class="store">
<img src="./images/badge-iphone.png" alt="Download on the App Store">
<img src="./images/badge-android.png" alt="Get it on Google">
</div>
</div>
</div>
</main>
<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><a href="#">&copy; 2014 Instagram</a></li>
</ul>
</footer>
</body>
</html>
85 changes: 85 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,93 @@ Colors to use:
dark blue: #06365f
light blue: #1c5380
*/
*{
box-sizing: border-box;
}

body {
font: 200 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
background-image: url(./../images/bgtile.png);
background-repeat: repeat-x;
}

main{
display: table;
margin: auto;
height: 90vh;
}

.mobile_container{
display: inline-block;
margin-top: 150px;
margin-right: 50px;
}

.logo{
display: inline-block;
}

.log_in{
display: inline-block;
position: relative;
bottom: 30px;
left: 100px;
}

.log_in>button{
height: 3em;
width: 7em;
background-image: url(./../images/frame.png);
background-size: cover;
background-color: rgb(6, 54, 95, 0.8);
background-blend-mode: overlay;
border: none;
box-shadow: -1px -1px 10px #1c5380;
color: #FFFFFF;
}

.info_container{
display: inline-block;
position: relative;
bottom: 75px;
padding: 2%;
max-width: 700px;
}

.info_text{
background-color: #FFFFFF;
color: #000000;
border-radius: 5px;
padding: 50px;
box-shadow: -1px -2px 15px -15px black;
}

h1{
color: #06365F;
margin-top: 0px;
}

footer{
display: table;
margin: auto;
height: 10vh;
margin: auto;
}

li{
list-style-type: none;
float: left;
margin-right: 15px;
}

li>a{
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
color: #1c5380;
}

li:nth-last-of-type(1)>a{
color: rgb(185, 185, 185);
}