Created
September 23, 2014 17:22
-
-
Save drogers98/186c2ac0d39375525823 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
<h1>EBS is SASSy</h1> | |
<p>Sunt laborum accusamus Marfa, Thundercats butcher irony bitters. Letterpress delectus non, Etsy sint officia tofu forage et. Readymade pop-up cornhole, Marfa assumenda hoodie paleo photo booth vinyl. Keytar kitsch pork belly wolf. Tofu tempor sunt paleo food truck occupy cardigan, iPhone ex excepteur quinoa small batch odio ethical aliquip. Consectetur +1 gastropub tattooed keytar reprehenderit, slow-carb assumenda polaroid VHS duis fanny pack do synth. Hella Tonx tousled, chillwave aliquip beard consequat master cleanse PBR irony cupidatat vinyl nostrud. And a <a>Regular Link</a>.</p> | |
<a class="button">Button</a> |
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
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
// Lets define some colors | |
$color_1: rgb(159,28,25); | |
$color_2: #ccc; | |
$color_3: darken($color_2, 20%); | |
$color_4: rgb(255,133,0); | |
// Lets define some fonts | |
$base_font_size: 14px; | |
$meta_font_size: .8em; | |
// And maybe a base padding | |
$base_padding: 20px; | |
// Now lets tell our project to set the base font size | |
body { | |
font-size: $base_font_size; | |
} | |
//And set a base h1. 3x the size of the body | |
h1 { | |
font-size: 3em; | |
} | |
// Now lets style some links | |
a { | |
color: $color_1; | |
// Now what happens on hover | |
&:hover { | |
color :$color_4; | |
} | |
// Now lets Define a spcific link of class "button" | |
&.button { | |
display:block; | |
text-align:center; | |
background-color: $color_2; | |
padding: $base_padding; | |
&:hover { | |
background-color: $color_3; | |
} | |
} | |
} |
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
body { | |
font-size: 14px; | |
} | |
h1 { | |
font-size: 3em; | |
} | |
a { | |
color: #9f1c19; | |
} | |
a:hover { | |
color: #ff8500; | |
} | |
a.button { | |
display: block; | |
text-align: center; | |
background-color: #ccc; | |
padding: 20px; | |
} | |
a.button:hover { | |
background-color: #999999; | |
} |
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
<h1>EBS is SASSy</h1> | |
<p>Sunt laborum accusamus Marfa, Thundercats butcher irony bitters. Letterpress delectus non, Etsy sint officia tofu forage et. Readymade pop-up cornhole, Marfa assumenda hoodie paleo photo booth vinyl. Keytar kitsch pork belly wolf. Tofu tempor sunt paleo food truck occupy cardigan, iPhone ex excepteur quinoa small batch odio ethical aliquip. Consectetur +1 gastropub tattooed keytar reprehenderit, slow-carb assumenda polaroid VHS duis fanny pack do synth. Hella Tonx tousled, chillwave aliquip beard consequat master cleanse PBR irony cupidatat vinyl nostrud. And a <a>Regular Link</a>.</p> | |
<a class="button">Button</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment