ocean.css 858 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* style sheet created by dubkat@dubkat.org */
  2. body {
  3. font-family: Arial, Helvetica, sans-serif;
  4. background-color: #D1CE92;
  5. }
  6. h1 {
  7. font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  8. font-size: 30pt;
  9. font-weight: bolder;
  10. font-style: italic;
  11. }
  12. tr.odd {
  13. background-color: #7FABD1;
  14. }
  15. tr.even {
  16. background-color: #92D1AF;
  17. }
  18. td.nick {
  19. font-weight: bold;
  20. font-size: 12pt;
  21. }
  22. td.nick small {
  23. font-weight: normal;
  24. font-size: 10pt;
  25. }`
  26. td.time {
  27. font-size: 10pt;
  28. }
  29. td.quote {
  30. vertical-align: top;
  31. font-family: Arial, Helvetica, Courier New;
  32. font-size: 12pt;
  33. }
  34. div.singlequote {
  35. margin: auto;
  36. width: 50%;
  37. }
  38. div.singlequote .quote {
  39. font-family: monospace;
  40. background-color: white;
  41. color: black;
  42. border: 1px dashed #bbb;
  43. padding: 4px;
  44. }
  45. div.singlequote .quote .meta {
  46. font-family: sans-serif;
  47. color: #aaa;
  48. font-size: small;
  49. }