Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <style>
  2. .btn {
  3.   background: #3498db;
  4.   background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
  5.   background-image: -moz-linear-gradient(top, #3498db, #2980b9);
  6.   background-image: -ms-linear-gradient(top, #3498db, #2980b9);
  7.   background-image: -o-linear-gradient(top, #3498db, #2980b9);
  8.   background-image: linear-gradient(to bottom, #3498db, #2980b9);
  9.   font-family: Arial;
  10.   color: #ffffff !important;
  11.   font-size: 20px;
  12.   padding: 10px 20px 10px 20px;
  13.   text-decoration: none;
  14.   width: 200px !important;
  15.   display: block;
  16. }
  17.  
  18. .btn:hover {
  19.   background: #3cb0fd;
  20.   background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  21.   background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  22.   background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  23.   background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  24.   background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  25.   text-decoration: none;
  26. }
  27.  
  28. </style>
  29.  
  30. <!-- Codi dels botons -->
  31.  
  32. <a class="btn" href="http://enllaç1">Botó 1</a>
  33.  
  34. <a class="btn" href="http://enllaç2">Botó 2</a>
  35.  
  36. <a class="btn" href="http://enllaç3">Botó 3</a>
  37.  
  38. <a class="btn" href="http://enllaç4">Botó 4</a>
  39.  
  40. <a class="btn" href="http://enllaç5">Botó 5</a>