global.css 899 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * This CSS is released under Creative Commons Zero 1.0 Universal license:
  3. * https://creativecommons.org/publicdomain/zero/1.0/legalcode.txt
  4. */
  5. :not(p)
  6. {
  7. margin: 0 auto;
  8. max-width: 60em;
  9. }
  10. @media (max-width:89em)
  11. {
  12. html
  13. {
  14. font-size: 0.95em;
  15. }
  16. }
  17. @media (min-width:90em)
  18. {
  19. html
  20. {
  21. font-size: 1.05em;
  22. }
  23. }
  24. html
  25. {
  26. background: #ddd8e8;
  27. color: #222;
  28. font-family: sans-serif;
  29. line-height: 1.4;
  30. }
  31. code,pre, #TOC, a:hover
  32. {
  33. background: #ccc7e7;
  34. }
  35. a
  36. {
  37. color: #22e;
  38. }
  39. img,video,iframe,pre
  40. {
  41. max-width: 100%;
  42. overflow: auto;
  43. }
  44. .title>*, header ul>li, .nav ul>li,
  45. #footer ul>li, .h:hover>*
  46. {
  47. display: inline;
  48. margin: 0.7%;
  49. text-align :center;
  50. }
  51. .title>*, span.date
  52. {
  53. display: block;
  54. }
  55. html, ul, #TOC
  56. {
  57. padding: 1em;
  58. }
  59. .date, .author, .h a
  60. {
  61. display: none;
  62. }
  63. @media (min-width:50em)
  64. {
  65. .title-logo{display:none}
  66. #TOC
  67. {
  68. float: left;
  69. margin: 1em;
  70. min-width: 25%;
  71. }
  72. }