style.css 795 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. body {
  2. background-color: #000;
  3. color: #eee;
  4. font-family: 'Play', serif;
  5. }
  6. a, a:visited, a:active {
  7. color: #08a;
  8. text-decoration: none;
  9. }
  10. a:hover {
  11. color: #0ae;
  12. text-decoration: underline;
  13. }
  14. #wrap {
  15. width: 1000px;
  16. margin: auto;
  17. margin-top: 25px;
  18. }
  19. #wrap #content {
  20. width: 750px;
  21. background-color: #111;
  22. padding: 15px;
  23. float: right;
  24. }
  25. #wrap #content p {
  26. line-height: 1.5;
  27. }
  28. #wrap #nav {
  29. float: left;
  30. width: 175px;
  31. }
  32. #wrap #nav div.nav {
  33. width: 175px;
  34. background-color: #111;
  35. padding: 15px;
  36. margin-bottom: 15px;
  37. }
  38. table#lab {
  39. border-collapse: collapse;
  40. border: 1px solid #000;
  41. }
  42. #lab th {
  43. padding: 5px;
  44. }
  45. #lab td {
  46. border: 1px solid #000;
  47. padding: 5px;
  48. }
  49. #lab tr.staff td {
  50. color: #888;
  51. }
  52. input {
  53. background-color: #111;
  54. color: #eee;
  55. border: 1px solid #eee;
  56. }