button.css 724 B

123456789101112
  1. /* Button */
  2. .button {
  3. background-color: #FFDC00; color: black; padding: 10px 20px; display: inline-block; background-position: left center;
  4. border-radius: 2px; border-bottom: 2px solid #E8BE29; transition: all 0.5s ease-out; text-decoration: none;
  5. }
  6. .button:hover { border-color: white; border-bottom: 2px solid #BD960C; transition: none ; background-color: #FDEB07 }
  7. .button:active { position: relative; top: 1px }
  8. .button.loading {
  9. color: rgba(0,0,0,0); background: #999 url(../img/loading.gif) no-repeat center center;
  10. transition: all 0.5s ease-out ; pointer-events: none; border-bottom: 2px solid #666
  11. }
  12. .button.disabled { color: #DDD; background-color: #999; pointer-events: none; border-bottom: 2px solid #666 }