style.css 754 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 #nav {
  26. float: left;
  27. width: 175px;
  28. }
  29. #wrap #nav div.nav {
  30. width: 175px;
  31. background-color: #111;
  32. padding: 15px;
  33. margin-bottom: 15px;
  34. }
  35. table#lab {
  36. border-collapse: collapse;
  37. border: 1px solid #000;
  38. }
  39. #lab th {
  40. padding: 5px;
  41. }
  42. #lab td {
  43. border: 1px solid #000;
  44. padding: 5px;
  45. }
  46. #lab tr.staff td {
  47. color: #888;
  48. }
  49. input {
  50. background-color: #111;
  51. color: #eee;
  52. border: 1px solid #eee;
  53. }