home.css 717 B

1234567891011121314151617181920212223
  1. p {
  2. font-size: 1.5em;
  3. text-align: center;
  4. margin: 50px 0;
  5. }
  6. article p a.create:link, article p a.create:visited {
  7. color: #111;
  8. padding: 10px;
  9. border: 1px solid #888;
  10. background: -moz-linear-gradient(top, #07a, #047);
  11. background: -webkit-linear-gradient(top, #07a, #047);
  12. display: inline-block; /* hasLayout */
  13. -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0077aa', endColorstr='#004477')";
  14. font-weight: bold;
  15. }
  16. article p a.create:hover {
  17. background: -moz-linear-gradient(top, #08b, #047);
  18. background: -webkit-linear-gradient(top, #08b, #047);
  19. -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088bb', endColorstr='#004477')";
  20. text-decoration: none;
  21. }