bada55.css 640 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. }