Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. .button(
  2.     @colorTop: #fb8825,
  3.     @colorMiddle: #f97215,
  4.     @colorBottom: #f75904,
  5.     @buttonBorderColor: #e54301,
  6.     @borderRadius: 10px,
  7.     @textShadow:#c2520b,
  8.     @boxShadow1: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5),
  9.     @boxShadow2:1px 1px 1px 1px rgba(0, 0, 0, 0.5)
  10.        ){
  11.   .gradient-background(@colorTop, @colorMiddle, @colorBottom);
  12.   /*button layout*/
  13.   display: inline-block;
  14.   padding: 15px 10px 15px 10px;
  15.   text-align: center;
  16.   margin-bottom: 3px;
  17.  
  18.   /*border radius*/
  19.   border: 1px solid @buttonBorderColor;
  20.     .border-radius(@borderRadius);
  21.   /*box shadow*/
  22.   -webkit-box-shadow: @boxShadow1, @boxShadow2;
  23.   -moz-box-shadow: @boxShadow1, @boxShadow2;
  24.   box-shadow: @boxShadow1, @boxShadow2;
  25.  
  26.   /*font*/
  27.   font-size: 14px;
  28.   color: white;
  29.   text-shadow: 1px 1px 1px @textShadow;
  30.   strong {
  31.     font-size: 24px;
  32.     font-weight: bold;
  33.     text-transform: uppercase;
  34.   }
  35. }