Advertisement
urksiful

BTN Modificar

May 31st, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.92 KB | None | 0 0
  1. .btn-modificar {
  2.   background: #3498db;
  3.   background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
  4.   background-image: -moz-linear-gradient(top, #3498db, #2980b9);
  5.   background-image: -ms-linear-gradient(top, #3498db, #2980b9);
  6.   background-image: -o-linear-gradient(top, #3498db, #2980b9);
  7.   background-image: linear-gradient(to bottom, #3498db, #2980b9);
  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-modificar:hover {
  17.   background: #3cb0fd;
  18.   background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  19.   background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  20.   background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  21.   background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  22.   background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  23.   text-decoration: none;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement