sass_compass_unleashed/presentation/09_future.slides

39 lines
494 B
Plaintext
Raw Normal View History

2012-03-21 17:09:33 +00:00
!SLIDE
# The future!
!SLIDE medium-list
# Sass
* Associative array data type (Hash)
* Better list functions
* `@content`
!SLIDE
## @content
``` scss
@mixin do-something {
font-size : 12px;
color : red;
@content;
}
p {
@include do-something {
color : blue;
}
}
```
``` css
p {
font-size : 12px;
color : red;
color : blue;
}
```
!SLIDE medium-list
# Compass
* Media query framework
* A css hacks library
* Extract blueprint from compass to a stand alone framework