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.
27 lines
702 B
27 lines
702 B
/*******************************
|
|
Button
|
|
*******************************/
|
|
|
|
/*-------------------
|
|
Element
|
|
--------------------*/
|
|
|
|
/* Shadow */
|
|
@verticalAlign: middle;
|
|
@backgroundColor: #F8F8F8;
|
|
@backgroundImage: linear-gradient(transparent, rgba(0, 0, 0, 0.05));
|
|
@shadowDistance: 0.3em;
|
|
@borderBoxShadowColor: @borderColor;
|
|
|
|
@verticalPadding: 1em;
|
|
@horizontalPadding: 2em;
|
|
|
|
@borderRadius: 0.4em;
|
|
/* transitions */
|
|
@transition:
|
|
opacity @transitionDuration @transitionEasing,
|
|
background-color @transitionDuration @transitionEasing,
|
|
box-shadow @transitionDuration @transitionEasing,
|
|
color @transitionDuration @transitionEasing,
|
|
background @transitionDuration @transitionEasing
|
|
;
|