Last active
August 29, 2015 14:10
-
-
Save SandyLudosky/d7a4584c87cfee54eb6d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
<div class='container'> | |
<h1>SASS</h1> | |
<h2><span>Basic</span> - Getting Started</h2> | |
<p id='mypara'>Lorem ipsum dolor sit amet, consectetur | |
adipiscing elit, sed do eiusmod tempor <br> | |
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis | |
nostrud exercitation ullamco laboris nisi</p> | |
<p>Lorem ipsum dolor sit amet, consectetur | |
adipiscing elit, sed do eiusmod tempor <br> | |
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis | |
nostrud exercitation ullamco laboris nisi</p> | |
<div class='footer'> | |
<p>© Copyright </p> | |
</div> | |
</div> | |
This file contains 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.7) | |
// Compass (v1.0.1) | |
// ---- | |
/* | |
* LESS Variables are defined with an @ character | |
* and can have different kinds of data types: | |
* color, string, boolean, multi-value | |
*/ | |
$Color1: navy; // named color value | |
$Color2: #333333; // hex color value | |
$StringVar: " with Sass"; // string variable | |
$FontSize: 18px; // numeric value | |
$border: 1px solid $Color1; // multi-value variable | |
$padding: 15px 15px 15px 15px; // multi-value variable | |
.container { | |
width: 960px; | |
margin: 0 auto; | |
padding: $padding; | |
color: $Color2; | |
h1 { | |
font-size: $FontSize*3; | |
color: $Color1; | |
border: $border; | |
text-align: center; | |
padding: $padding; | |
} | |
h2 { | |
font-size: $FontSize*2; | |
span { | |
font-style: italic; | |
} | |
&:after { | |
content: $StringVar; | |
} | |
} | |
} | |
.footer { | |
border: $border; | |
text-align: center; | |
padding: $padding; | |
} | |
This file contains 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
/* | |
* LESS Variables are defined with an @ character | |
* and can have different kinds of data types: | |
* color, string, boolean, multi-value | |
*/ | |
.container { | |
width: 960px; | |
margin: 0 auto; | |
padding: 15px 15px 15px 15px; | |
color: #333333; | |
} | |
.container h1 { | |
font-size: 54px; | |
color: navy; | |
border: 1px solid navy; | |
text-align: center; | |
padding: 15px 15px 15px 15px; | |
} | |
.container h2 { | |
font-size: 36px; | |
} | |
.container h2 span { | |
font-style: italic; | |
} | |
.container h2:after { | |
content: " with Sass"; | |
} | |
.footer { | |
border: 1px solid navy; | |
text-align: center; | |
padding: 15px 15px 15px 15px; | |
} |
This file contains 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
<div class='container'> | |
<h1>SASS</h1> | |
<h2><span>Basic</span> - Getting Started</h2> | |
<p id='mypara'>Lorem ipsum dolor sit amet, consectetur | |
adipiscing elit, sed do eiusmod tempor <br> | |
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis | |
nostrud exercitation ullamco laboris nisi</p> | |
<p>Lorem ipsum dolor sit amet, consectetur | |
adipiscing elit, sed do eiusmod tempor <br> | |
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis | |
nostrud exercitation ullamco laboris nisi</p> | |
<div class='footer'> | |
<p>© Copyright </p> | |
</div> | |
</div> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment