mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-10 11:35:02 -05:00
41 lines
836 B
Stylus
41 lines
836 B
Stylus
@import _variables
|
|
|
|
roundall($round)
|
|
-moz-border-radius: $round
|
|
-webkit-border-radius: $round
|
|
-khtml-border-radius: $round
|
|
-o-border-radius: $round
|
|
-border-radius: $round
|
|
border-radius: $round
|
|
|
|
noselect()
|
|
-webkit-touch-callout: none
|
|
-webkit-user-select: none
|
|
-khtml-user-select: none
|
|
-moz-user-select: none
|
|
-ms-user-select: none
|
|
user-select: none
|
|
|
|
transform()
|
|
-webkit-transform: arguments
|
|
-moz-transform: arguments
|
|
-ms-transform: arguments
|
|
transform: arguments
|
|
|
|
borderbox()
|
|
-moz-box-sizing: border-box
|
|
-webkit-box-sizing: border-box
|
|
box-sizing: border-box
|
|
|
|
// avatars
|
|
|
|
avatar()
|
|
width: 30px
|
|
height: 30px
|
|
roundall(50px)
|
|
|
|
// this if for the content flash and hardware acceleration bugs in webkit
|
|
webkit-transition-fix()
|
|
-webkit-backface-visibility: hidden
|
|
//-webkit-transform: translateZ(0)
|