style.css 857 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. body {
  2. margin: auto;
  3. margin-top: 14px;
  4. font-family: monospace !important;
  5. max-width: 1114px;
  6. }
  7. table {
  8. margin-left: auto;
  9. margin-right: auto;
  10. background-color: #99ccff;
  11. }
  12. table, td {
  13. max-width: 1114px;
  14. width: 100%;
  15. }
  16. td {
  17. border: 1px solid;
  18. }
  19. h1 {
  20. text-align: center;
  21. }
  22. h1, td {
  23. padding: 4px;
  24. }
  25. tr {
  26. display: flex;
  27. }
  28. .snippet {
  29. width: 100%;
  30. font-style: italic;
  31. }
  32. .info {
  33. text-align: center;
  34. }
  35. .f {
  36. background-color: #ccffcc;
  37. }
  38. .m {
  39. background-color: #ffb3b3;
  40. }
  41. a {
  42. text-decoration: none;
  43. color: inherit;
  44. }
  45. .button {
  46. padding: 2px 6px 2px 6px;
  47. border-top: 1px solid #CCCCCC;
  48. border-right: 1px solid #333333;
  49. border-bottom: 1px solid #333333;
  50. border-left: 1px solid #CCCCCC;
  51. }
  52. /* https://enmascript.com/articles/2019/09/26/toggle-content-on-click-without-javascript/ */
  53. #moids {
  54. display: none;
  55. }
  56. #moids:target {
  57. display: block;
  58. }