tachyons/src/_position.css

38 lines
830 B
CSS
Raw Permalink Normal View History

/*
POSITIONING
Docs: http://tachyons.io/docs/layout/position/
Media Query Extensions:
-ns = not-small
-m = medium
-l = large
*/
2016-02-20 07:21:04 +00:00
.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
@media (--breakpoint-not-small) {
2016-02-20 07:21:04 +00:00
.static-ns { position: static; }
.relative-ns { position: relative; }
.absolute-ns { position: absolute; }
.fixed-ns { position: fixed; }
}
@media (--breakpoint-medium) {
2016-02-20 07:21:04 +00:00
.static-m { position: static; }
.relative-m { position: relative; }
.absolute-m { position: absolute; }
.fixed-m { position: fixed; }
}
@media (--breakpoint-large) {
2016-02-20 07:21:04 +00:00
.static-l { position: static; }
.relative-l { position: relative; }
.absolute-l { position: absolute; }
.fixed-l { position: fixed; }
}