Advertisement
urksiful

BTN Eliminar

May 31st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.92 KB | None | 0 0
  1. .btn-eliminar {
  2.   background: #661231;
  3.   background-image: -webkit-linear-gradient(top, #661231, #ab0f2f);
  4.   background-image: -moz-linear-gradient(top, #661231, #ab0f2f);
  5.   background-image: -ms-linear-gradient(top, #661231, #ab0f2f);
  6.   background-image: -o-linear-gradient(top, #661231, #ab0f2f);
  7.   background-image: linear-gradient(to bottom, #661231, #ab0f2f);
  8.   -webkit-border-radius: 28;
  9.   -moz-border-radius: 28;
  10.   border-radius: 28px;
  11.   color: #ffffff;
  12.   padding: 10px 20px 10px 20px;
  13.   text-decoration: none;
  14. }
  15.  
  16. .btn-eliminar:hover {
  17.   background: #780000;
  18.   background-image: -webkit-linear-gradient(top, #780000, #d93434);
  19.   background-image: -moz-linear-gradient(top, #780000, #d93434);
  20.   background-image: -ms-linear-gradient(top, #780000, #d93434);
  21.   background-image: -o-linear-gradient(top, #780000, #d93434);
  22.   background-image: linear-gradient(to bottom, #780000, #d93434);
  23.   text-decoration: none;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement