Website re-design samples (circa Jun 2005)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

40 lines
508 B

  1. /*
  2. base.css
  3. */
  4. /*
  5. type selectors
  6. */
  7. body,td {
  8. font-family: Georgia, Times, Serif;
  9. font-size: 16px;
  10. margin: 0;
  11. padding: 0;
  12. }
  13. body {
  14. padding: 0.5em;
  15. background-color: #eee;
  16. text-align: center; /* IE5 <div> centering hack pt. 1 */
  17. }
  18. hr {
  19. width: 100%;
  20. height: 1pt;
  21. border: none;
  22. border-top: 1px solid #999;
  23. }
  24. /*
  25. class selectors
  26. */
  27. hr.line {
  28. margin: 0;
  29. padding: 0;
  30. }
  31. span.right {
  32. float: right;
  33. }
  34. span.left {
  35. float: left;
  36. }