Skip to content
Open

pull #2849

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
35 changes: 30 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,37 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Instagram Clone</title>
<!-- don't forget to link your styles -->
<link href="styles/style.css" rel="stylesheet" />
</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
<div class="container">
<img src="images/phones.png" alt="iPhone with Instagram App" class="phones" />
<div>
<div class="header">
<img src="images/brand.png" alt="Instagram Logo" />
<button><img src="images/home.png" />Log in</button>
</div>
<div class="description">
<h3>Capture and Share the World's Moments</h3>
<p>
Instagram is a <strong>fast, beautiful</strong> and
<strong>fun</strong> 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 src="images/badge-iphone.png" alt="Download on the App Store" />
<img src="images/badge-android.png" alt="Get it on Google Play" />
</div>
</div>
<footer>
About Us Support Blog Press API Jobs Privacy Terms &copy; 2014 Instagram
</footer>
</body>
</html>
44 changes: 44 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,48 @@ light blue: #1c5380
body {
font: 200 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
padding: 7em;
background: linear-gradient(to bottom, #1c5380 40%, white 40%);
}

.container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2em;
max-width: 900px;
}

.header {
display: flex;
justify-content: space-between;
align-items: center;
gap: 4em;
padding: 10px 0px;
}

button {
width: 90px;
background-color: #1c5380;
color: white;
padding: 5px;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
border-radius: 5px;
}

.description {
padding: 10px;
border-radius: 5px;
box-shadow: inset 1px 0px 1px 0px gray;
background-color: white;
}

footer {
margin: 10px;
grid-column-start: auto;
text-align: center;
padding: 30px;
font-size: 14px;
}