Advertisement
Guest User

CSS

a guest
Jul 27th, 2015
2,019
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. body {
  2. background-color: #9c9f84;
  3. }
  4.  
  5.  
  6. .button {
  7. background: #e7e7e7;
  8. border: 1px solid;
  9. border-radius: 3px;
  10. box-sizing: border-box;
  11. display: block;
  12. font: 700 13px Verdana, Georgia, serif;
  13. height: 30px;
  14. line-height: 28px;
  15. padding: 0 20px;
  16. margin:0 auto;
  17. }
  18.  
  19. a {
  20. color: #666;
  21. text-decoration: none;
  22. float: left;
  23. }
  24.  
  25. a:hover {
  26. color: #000;
  27. background-color: #dadada;
  28. cursor:url("mail.ico"), default;
  29. }
  30.  
  31. ul {
  32. width: auto;
  33. padding: 0;
  34. margin: 12 0 0 18;
  35. list-style-type: none;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement