home.css 461 B

123456789101112131415161718192021
  1. p {
  2. font-size: 1.5em;
  3. text-align: center;
  4. margin: 50px 0;
  5. }
  6. article p a:link, article p a:visited {
  7. color: #111;
  8. padding: 10px;
  9. border: 1px solid #888;
  10. background: #058;
  11. background: -moz-linear-gradient(top, #07a, #047);
  12. background: -webkit-linear-gradient(top, #07a, #047);
  13. font-weight: bold;
  14. }
  15. article p a:hover {
  16. background: -moz-linear-gradient(top, #08b, #047);
  17. background: -webkit-linear-gradient(top, #08b, #047);
  18. text-decoration: none;
  19. }