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
117 changes: 111 additions & 6 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,116 @@
/*
Colors to use:
dark blue: #06365f
light blue: #1c5380
*/
/*reset CSS*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

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

body#gradient {
width: 100%;
height: 250px;
/* leave background #5588AA in case old browser doesnt support linear-gradient */
background-color: #5588AA;
background: linear-gradient(to top, #38759e, #5588AA);
background-repeat: no-repeat;
}

#mainimage {
position: absolute;
margin-left: 260px;
margin-top: 110px;
}

header h1 {
margin-bottom: 20px;
}

#maintextarea {
width: 400px;
height: 620px;
margin-left: 610px;
padding-top: 110px;
}

#logoimage {
float: left;
}

#logoname {
float: left;
font-family: 'Cookie', cursive;
font-size: 50px;
color: #e7e7e7;
text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
padding-left: 10px;
}

div#login {
border-radius: 3px;
float: right;
width: 60px;
height: 30px;
line-height: 30px;
text-align: center;
font-size: 12px;
color: #e7e7e7;
background-color: #5588AA;
background: linear-gradient(to top, #5a8cae, #5d98bf);
margin-top: 10px;
}

div h3 {
clear: left;
}

h3 {
color: #254e68;
line-height: 25px;
}

article {
border-color: #fff;
border-radius: 5px;
box-shadow: 0 -5px 5px -5px #888888;
clear: left;
background-color: #fff;
margin-top: 20px;
padding: 30px;
}

article p {
font-size: 12px;
padding-top: 20px;
line-height: 22px;
text-align: left;
}

.boldfont {
font-weight: bold;
}

.socialmedia {
margin-top: 30px;
margin-right: 17px;
}

footer {
text-align: center;
}

nav a {
padding-right: 20px;
text-transform: uppercase;
font-size: 10px;
color: #5588AA;
font-weight: bold;
}

#copyright {
color: lightgrey !important;
}
Binary file added img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
81 changes: 64 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,78 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Cookie" rel="stylesheet">
<title>Instagram</title>
</head>
<body>
Instagram
<body id="gradient">

Capture and Share the World's Moments
<img id="mainimage" src="img/phones.png" width="300px" height="450px">

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.
<div id="maintextarea">

Oh yeah, did we mention it's free?
<header>

Download on the App Store
Get it on Google Play
<img id="logoimage" src="img/logo.png" width="40" height:"40">
<h1 id="logoname">Instagram</h1>
<div id="login">
Log in
</div>

About Us
Support
Blog
Press
API
Jobs
Privacy
Terms
</header>

<article>

<div>

<h3>Capture and Share</h3>
<h3>the World's Moments</h3>

</div>

<div>

<p>
Instagram is a <span class="boldfont">fast</span>, <span class="boldfont">beautiful</span> and <span class="boldfont">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>

</div>

<div>

<img class="socialmedia" src="img/badge-iphone.png" width="130px" height="40px"><img class="socialmedia" src="img/badge-android.png" width="130px" height="40px">

</div>

</article>

</div>

<footer>

<nav>
<a>About Us</a>
<a>Support</a>
<a>Blog</a>
<a>Press</a>
<a>API</a>
<a>Jobs</a>
<a>Privacy</a>
<a>Terms</a>
<a span id="copyright">&copy; 2014 Instagram</span></a>

</nav>

</footer>

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