hexo-theme-amane/source/css/_util/mixin.styl

32 lines
770 B
Stylus
Raw Normal View History

2015-03-19 14:25:53 +00:00
// http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/
hide-text()
2016-02-02 16:19:44 +00:00
text-indent: 100%
white-space: nowrap
overflow: hidden
2015-03-19 14:25:53 +00:00
// http://codepen.io/shshaw/full/gEiDt
absolute-center(width, height = width)
2016-02-02 16:19:44 +00:00
// margin: auto
// position: absolute
// top: 50%
// top: 0
// left: 0
// bottom: 0
// right: 0
// width: width
// height: height
// overflow: auto
width: width
height: height
position: absolute
top: 50%
left: 50%
margin-top: width * -0.5
margin-left: height * -0.5
2015-03-19 14:25:53 +00:00
avoid-column-break()
2016-02-02 16:19:44 +00:00
vendor("column-break-inside", avoid, only: webkit)
page-break-inside: avoid // for firefox
overflow: hidden // fix for firefox
break-inside: avoid-column