| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*global*/
- html, body {
- padding: 0 !important; margin: 0 !important;
- width: auto !important; max-width: 100% !important;
- }
- /*github theme*/
- .markdown-body {
- overflow: auto;
- min-width: 888px;
- max-width: 888px;
- background-color: #fff;
- border: 1px solid #ddd;
- padding: 45px;
- margin: 20px auto;
- }
- .markdown-body #html>*:first-child {
- margin-top: 0 !important;
- }
- .markdown-body #html>*:last-child {
- margin-bottom: 0 !important;
- }
- .markdown-body img {
- background-color: transparent;
- }
- /*all other themes*/
- .markdown-theme {
- max-width: 100% !important;
- padding: 20px !important;
- margin: auto !important;
- }
- @media (max-width: 767px) {
- .markdown-theme { width: auto !important; }
- }
- @media (min-width: 768px) and (max-width: 992px) {
- .markdown-theme { width: 713px !important; }
- }
- @media (min-width: 992px) and (max-width: 1200px) {
- .markdown-theme { width: 937px !important; }
- }
- @media (min-width: 1200px) {
- .markdown-theme { width: 1145px !important; }
- }
|