style-gearsix.css 557 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. body {
  2. background-image: url(/background.png);
  3. background-repeat: repeat;
  4. color: #ccc;
  5. font-family: monospace;
  6. font-size: 11pt;
  7. }
  8. a {
  9. color: #8dc;
  10. }
  11. a:hover {
  12. text-shadow: 1px 1px 5px #8dc;
  13. }
  14. h1, h2 {
  15. margin: 0;
  16. }
  17. #logo {
  18. vertical-align: bottom;
  19. }
  20. hr {
  21. border-top: 0;
  22. border-bottom: dashed 1px white;
  23. }
  24. table td {
  25. padding: 0 1em;
  26. max-width: 60vw;
  27. vertical-align: top;
  28. }
  29. #content table tr:hover {
  30. background-color: #333;
  31. }
  32. pre {
  33. white-space: pre-wrap;
  34. }
  35. .line {
  36. text-decoration: none;
  37. }
  38. details {
  39. margin-bottom: 2em;
  40. }