- What's your focus / work?
- What was the last thing you found challenging/frustrating in SASS
#SVG with SASS and Gulp#
Let's start downloading stuff during intro...
<html> | |
<body> | |
<h1>Sass - Placeholders</h1> | |
<div class="box"><h4>Grey Box</h4></div> | |
<div class="success"><h4>Green Box</h4></div> | |
<div class="error"><h4>Red Box</h4></div> | |
<footer>© 2014 - Someone <a href="#">legal link</a></a> </footer> | |
</body> | |
</html> |
<html> | |
<body> | |
<div class='container'> | |
<h1>Sass - Placeholders</h1> | |
<div class="box"><h4>Grey Box</h4></div> | |
<div class="success"><h4>Green Box</h4></div> | |
<div class="error"><h4>Red Box</h4></div> | |
<footer>© 2014 - Someone <a href="#">legal link</a></a> </footer> | |
</div> |
<html> | |
<body> | |
<h1>Sass - @import</h1><hr> | |
<div class="box"><h4>Grey Box</h4></div> | |
<div class="success"><h4>Green Box</h4></div> | |
<div class="error"><h4>Red Box</h4></div> | |
<footer>© 2014 - Someone <a href="#">legal link</a></a> </footer> | |
</body> | |
</html> |
<html> | |
<body> | |
<h1>Sass - @import</h1><hr> | |
<div class="box"><h4>Grey Box</h4></div> | |
<div class="success"><h4>Green Box</h4></div> | |
<div class="error"><h4>Red Box</h4></div> | |
<footer>© 2014 - Someone <a class='btn btn-primary btn-xs'href="#">legal link</a></a> </footer> | |
</body> | |
</html> |
<div class='container'> | |
<h1>SASS - Mixins with defaults</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> | |
#Intro#
#Get to know the group#
{"schemaVersion":1,"label":"release","message":"0.0.0-development","color":"green"} |
// variable | |
$font-stack: Helvetica, sans-serif; | |
$primary-color: #16a085; | |
$secondary-color: #e67e22; | |
body { | |
font: 100% $font-stack; | |
color: $primary-color; | |
} |
// variables | |
@color-gray: darkgrey; | |
@color-pink : pink; | |
@color-river:#3498db; | |
@color-belize: #2980b9; | |
@midnight-blue: #2c3e50; | |
@turquoise: #1abc9c; | |
@river: #3498db; | |
@amethyste: #9b59b6; |