Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created August 6, 2017 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/e245c874a4eef3a55b62eac4e2a5d5ac to your computer and use it in GitHub Desktop.
Save codecademydev/e245c874a4eef3a55b62eac4e2a5d5ac to your computer and use it in GitHub Desktop.
Codecademy export
<head>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<div id="landscape">
<h1 class="title">Visit Myanmar</h1>
</div>
<p>
Descriptions to come. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer consectetur, libero eget bibendum elementum, lorem orci rutrum justo, at fermentum neque felis ac ex. Phasellus suscipit dapibus ante, eu sodales risus sagittis ut. Phasellus eget augue purus. Sed eget auctor felis, egestas vestibulum augue. Aenean pharetra metus quis orci consequat dapibus. Integer aliquam aliquet ipsum ut pellentesque. Curabitur cursus, nibh ut vehicula maximus, eros libero pretium diam, eu luctus nisl mauris a augue. Nulla luctus in orci non vulputate. Suspendisse at tortor elit.
</p>
<div id="monkeys">
<h1 class="title">Book my trip now</h1>
</div>
</body>
@mixin parallax-background($file) {
background: url($file) no-repeat center center fixed;
@include background-size(cover);
}
@mixin background-size($size) {
-webkit-background-size: $size;
-moz-background-size: $size;
-o-background-size: $size;
background-size: $size;
}
$parallax-height: 100vh;
$center-margin: 0px auto;
body {
margin: 0;
padding: 0;
font-family: Roboto;
color: #2e3738;
}
#landscape {
width: 100%;
height: 100vh;
perspective: 1px;
transform: translateZ(-1px);
overflow-x: hidden;
overflow-y: auto;
@include parallax-background("https://s3.amazonaws.com/codecademy-content/projects/sass/landscape.jpg");
}
#monkeys {
width: 100%;
height: 100vh;
perspective: 1px;
transform: translateZ(-1px);
overflow-x: hidden;
overflow-y: auto;
@include parallax-background("https://s3.amazonaws.com/codecademy-content/projects/sass/monkeys.jpg");
}
#landscape,
#monkeys {
$parallax-height;
@include background-size;
}
h1{
text-transform: uppercase;
font-family: 'Bitter', serif;
letter-spacing: 0.06em;
font-size: 120px;
color: #FFF;
opacity: 0.7;
text-align: center;
transform: translateZ(-2px);
}
}
p {
width: 70%;
padding: 5%;
margin: 0px auto;
text-align: center;
font-size: 20px;
font-weight: 200;
line-height: 1.4;
$center-margin;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment