https://github.com/sha-red/compass-mixins/tree/master/lib
extended with more sass frameworks and as django app.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
756 B
22 lines
756 B
![]()
12 years ago
|
@import "shared";
|
||
|
|
||
|
// Webkit, IE10 and future support for [CSS Regions](http://dev.w3.org/csswg/css3-regions/)
|
||
|
//
|
||
|
// $target is a value you use to link two regions of your css. Give the source of your content the flow-into property, and give your target container the flow-from property.
|
||
|
//
|
||
|
// For a visual explanation, see the diagrams at Chris Coyier's
|
||
|
// [CSS-Tricks](http://css-tricks.com/content-folding/)
|
||
|
|
||
|
@mixin flow-into($target) {
|
||
|
$target: unquote($target);
|
||
|
@include experimental(flow-into, $target,
|
||
![]()
11 years ago
|
not(-moz), -webkit, not(-o), -ms, not(-khtml), not official
|
||
![]()
12 years ago
|
);
|
||
|
}
|
||
|
|
||
|
@mixin flow-from($target) {
|
||
|
$target: unquote($target);
|
||
|
@include experimental(flow-from, $target,
|
||
![]()
11 years ago
|
not(-moz), -webkit, not(-o), -ms, not(-khtml), not official
|
||
![]()
12 years ago
|
);
|
||
|
}
|