116 lines
5.3 KiB
Plaintext
116 lines
5.3 KiB
Plaintext
/*!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
.flexbox() {
|
|
display: flex;
|
|
}
|
|
|
|
.flexbox(@type) {
|
|
display: ~"@{type}-flex";
|
|
}
|
|
|
|
.flex-direction(@direction) {
|
|
flex-direction: @direction;
|
|
}
|
|
|
|
.flex-wrap(@wrap) {
|
|
flex-wrap: @wrap;
|
|
}
|
|
|
|
.flex(@amount) {
|
|
flex: @amount;
|
|
}
|
|
|
|
.flex-align(@alignment) {
|
|
flex-align: @alignment;
|
|
}
|
|
|
|
.flex-align-items(@alignment) {
|
|
align-items: @alignment;
|
|
}
|
|
|
|
.flex-align-content(@alignment) {
|
|
align-content: @alignment;
|
|
}
|
|
|
|
.flex-pack(@pack) {
|
|
flex-pack: @pack;
|
|
}
|
|
|
|
.box-shadow(...) {
|
|
box-shadow: @arguments;
|
|
}
|
|
|
|
.box-sizing(@type) {
|
|
box-sizing: @type;
|
|
}
|
|
|
|
.background-clip(@type) {
|
|
background-clip: @type;
|
|
}
|
|
|
|
.transform(...) {
|
|
transform: @arguments;
|
|
}
|
|
|
|
.transform-origin(...) {
|
|
transform-origin: @arguments;
|
|
}
|
|
|
|
.transform-style(...) {
|
|
transform-style: @arguments;
|
|
}
|
|
|
|
.transition(...) {
|
|
transition: @arguments;
|
|
}
|
|
|
|
.pTransition(...) {
|
|
transition: @arguments;
|
|
}
|
|
|
|
.user-select(...) {
|
|
user-select: @arguments;
|
|
}
|
|
|
|
.animation(...) {
|
|
animation: @arguments;
|
|
}
|
|
|
|
.animation-name(...) {
|
|
animation-name: @arguments;
|
|
}
|
|
|
|
.animation-delay(...) {
|
|
animation-delay: @arguments;
|
|
}
|
|
|
|
.appearance(...) {
|
|
appearance: @arguments;
|
|
}
|
|
|
|
.text-size-adjust(...) {
|
|
text-size-adjust: @arguments;
|
|
}
|