sass_compass_unleashed/presentation/09_future.slides
2012-03-23 15:55:41 -04:00

40 lines
493 B
Plaintext

!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