content.css 1017 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*all themes*/
  2. html.markdown-theme-html {
  3. width: auto !important;
  4. max-width: 100% !important;
  5. padding: 0 !important;
  6. margin: 0 !important;
  7. }
  8. body.markdown-theme {
  9. max-width: 100% !important;
  10. padding: 20px !important;
  11. margin: auto !important;
  12. }
  13. @media (max-width: 767px) {
  14. body.markdown-theme { width: auto !important; }
  15. }
  16. @media (min-width: 768px) and (max-width: 992px) {
  17. body.markdown-theme { width: 713px !important; }
  18. }
  19. @media (min-width: 992px) and (max-width: 1200px) {
  20. body.markdown-theme { width: 937px !important; }
  21. }
  22. @media (min-width: 1200px) {
  23. body.markdown-theme { width: 1145px !important; }
  24. }
  25. /*github theme*/
  26. html.markdown-body-html {
  27. min-width: 1020px;
  28. }
  29. body.markdown-body {
  30. overflow: auto;
  31. min-width: 200px;
  32. max-width: 888px;
  33. background-color: #fff;
  34. border: 1px solid #ddd;
  35. padding: 45px;
  36. margin: 20px auto;
  37. }
  38. body.markdown-body #html>*:first-child {
  39. margin-top: 0 !important;
  40. }
  41. body.markdown-body #html>*:last-child {
  42. margin-bottom: 0 !important;
  43. }