style.css 551 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. body {
  2. font-family: sans-serif
  3. }
  4. a:not(:hover) {
  5. text-decoration: none
  6. }
  7. thead {
  8. background: #fafafa
  9. }
  10. details:not([open]) summary>h3 {
  11. text-decoration: underline
  12. }
  13. details summary {
  14. cursor: pointer
  15. }
  16. table {
  17. border-collapse: collapse;
  18. }
  19. table>thead th {
  20. border: 1px solid black;
  21. border-bottom: 2px solid black;
  22. }
  23. td {
  24. border: 1px solid black;
  25. padding: 0.8em;
  26. }
  27. img {
  28. max-width: 100%;
  29. }
  30. summary>* {
  31. /*
  32. * Make summary display on the same line, instead of
  33. * splitting into multiple lines
  34. */
  35. display: inline-flex;
  36. }