Created
July 26, 2016 12:35
-
-
Save bcuz/84bd803805f2466620afc3dae402c660 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url(https://fonts.googleapis.com/css?family=Pacifico); //CSS import | |
@import "helper/placeholders"; | |
@import "helper/mixins"; | |
@import "helper/variables"; | |
h1 { | |
font-family: Roboto, sans-serif; | |
@include center; | |
} | |
.absolute { | |
position: absolute | |
} | |
.banner { | |
font-family: 'Pacifico', cursive; | |
height: 400px; | |
background-image: url($lemonade-banner); | |
border: { | |
top: $border; | |
bottom: $border; | |
} | |
.slogan { | |
background-color: $translucent-white; | |
border: 4px solid black; | |
top: 200px; | |
left: 25%; | |
line-height: 200px; | |
@include dimensions(50%, 200px); | |
@extend .absolute; | |
span { | |
@include center; | |
width: 40%; | |
left: 30%; | |
@extend .absolute; | |
} | |
} | |
} | |
.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