Skip to content

Instantly share code, notes, and snippets.

@bcuz
Last active July 27, 2016 14:30
Show Gist options
  • Save bcuz/b9069c2a169147a32774d9dedc5b5ba6 to your computer and use it in GitHub Desktop.
Save bcuz/b9069c2a169147a32774d9dedc5b5ba6 to your computer and use it in GitHub Desktop.
@import url(https://fonts.googleapis.com/css?family=Pacifico); //CSS import
@import "helper/placeholders";
@import "helper/mixins";
@import "helper/variables";
.absolute {
position: absolute
}
h1 {
font-family: Roboto, sans-serif;
@include center;
}
.banner {
font-family: 'Pacifico', cursive;
height: 400px;
background-image: url($lemonade-banner);
border: {
top: $border;
bottom: $border;
}
.slogan {
@extend .absolute;
background-color: $translucent-white;
border: 4px solid black;
top: 200px;
left: 25%;
line-height: 200px;
@include dimensions(50%, 200px);
span {
@extend .absolute;
@include center;
width: 40%;
left: 30%;
}
}
}
.container {
font-family: 'Pacifico', cursive;
.icon {
display: inline-block;
margin: 2%;
border: $border;
@include dimensions(300px, 300px);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment