bada55.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. body {
  2. width: 600px;
  3. font-family: Sans Serif;
  4. background-color: black;
  5. color: gray;
  6. padding-bottom: 400px;
  7. }
  8. footnote {
  9. display: none;
  10. position: relative;
  11. font-size: .7em;
  12. vertical-align: top;
  13. margin: 0px 2px;
  14. color: #bada55;
  15. border-bottom: 1px solid;
  16. cursor: pointer;
  17. }
  18. footnote > div {
  19. position: absolute;
  20. left: 10px;
  21. top: -5px;
  22. padding: 12px;
  23. font-size: 1.1em;
  24. color: black;
  25. border: 1px dashed #bada55;
  26. background-color: gray;
  27. text-decoration: none;
  28. width: 230px;
  29. z-index: 200;
  30. }
  31. li {
  32. padding-bottom: 12px;
  33. }
  34. hr {
  35. border-color: #bada55;
  36. width: 30%;
  37. height: 1px;
  38. margin-top: 35px;
  39. margin-bottom: 35px;
  40. }
  41. /* tables */
  42. table {
  43. border-collapse: collapse;
  44. }
  45. th {
  46. color: #222222;
  47. background-color: #7a9a15;
  48. }
  49. td, th {
  50. border: 1px solid #7a9a15;
  51. padding-top: 5px;
  52. padding-bottom: 5px;
  53. padding-left: 10px;
  54. padding-right: 5px;
  55. }
  56. td > a {
  57. color: #bada55;
  58. }
  59. td > a:visited {
  60. color: #bada55;
  61. }
  62. table.striped3 tbody tr:nth-child(3n) {
  63. background-color: #333333;
  64. }
  65. table.striped3 tbody tr:nth-child(12n) td {
  66. border-bottom-width: 4px !important;
  67. }