Advertisement
Guest User

Untitled

a guest
Dec 10th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. .butn {
  2. background: #74b9ff;
  3. background-image: -webkit-linear-gradient(top, #74b9ff, #74b9ff);
  4. background-image: -moz-linear-gradient(top, #74b9ff, #74b9ff);
  5. background-image: -ms-linear-gradient(top, #74b9ff, #74b9ff);
  6. background-image: -o-linear-gradient(top, #74b9ff, #74b9ff);
  7. background-image: linear-gradient(to bottom, #74b9ff, #74b9ff);
  8. -webkit-border-radius: 10;
  9. -moz-border-radius: 10;
  10. border-radius: 10px;
  11. font-family: Arial;
  12. color: #ffffff;
  13. font-size: 30px;
  14. padding: 11px 18px 11px 18px;
  15. text-decoration: none;
  16. }
  17.  
  18. .butn:hover {
  19. background: #5D94CC;
  20. background-image: -webkit-linear-gradient(top, #5D94CC, #5D94CC);
  21. background-image: -moz-linear-gradient(top, #5D94CC, #5D94CC);
  22. background-image: -ms-linear-gradient(top, #5D94CC, #5D94CC);
  23. background-image: -o-linear-gradient(top, #5D94CC, #5D94CC);
  24. background-image: linear-gradient(to bottom, #5D94CC, #5D94CC);
  25. text-decoration: none;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement