dark-style.css 953 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. body {
  2. background: #222222;
  3. padding-left: 2%;
  4. padding-right: 2%;
  5. }
  6. h1, h2, h3, h4, h5, h6, p, td, th {
  7. color: #EEEEEE;
  8. font-family: Consolas, monospace;
  9. }
  10. th {
  11. text-align: center;
  12. padding: 8px;
  13. font-size: 1.1em;
  14. }
  15. td {
  16. padding: 8px;
  17. }
  18. table {
  19. width: 100%;
  20. background: #333333;
  21. text-align: center;
  22. border: 0;
  23. }
  24. table tr:nth-child(even) {
  25. background-color: #444444;
  26. }
  27. table tr:nth-child(odd) {
  28. background-color: #333333;
  29. }
  30. table tr:hover {
  31. background: #252525;
  32. cursor: pointer;
  33. }
  34. h1.center, h2.center, h3.center, h4.center, h5.center, h6.center, p.center {
  35. text-align: center;
  36. }
  37. a, a:visited {
  38. color: #EEEEEE;
  39. }
  40. a:hover {
  41. color:#DDDDDD;
  42. }
  43. table, tr, th, td {
  44. border-collapse: collapse;
  45. }
  46. pre code {
  47. border: 1px solid #555555;
  48. border-radius: 5px;
  49. background-color: #333333;
  50. padding: 12px;
  51. display: block;
  52. }
  53. a.nostyle {
  54. text-decoration: none;
  55. }