| 1 | .md_previewer{ |
| 2 | margin-left: 170px; |
| 3 | margin-right: 50px; |
| 4 | margin-bottom: 40px; |
| 5 | |
| 6 | word-wrap: break-word; |
| 7 | overflow: auto; |
| 8 | max-height: 300px; |
| 9 | max-width: 800px; |
| 10 | |
| 11 | .title{ |
| 12 | font-size: 0.80em; |
| 13 | color: @light_text_color; |
| 14 | } |
| 15 | |
| 16 | .md_preview{ |
| 17 | .padding_box; |
| 18 | font-size: 0.9em; |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | .markdown_block, .md_preview { |
| 23 | p { |
| 24 | font-size: 1em; |
| 25 | text-align: justify; |
| 26 | margin-left: 10px; |
| 27 | margin-right: 10px; |
| 28 | } |
| 29 | |
| 30 | ul { |
| 31 | margin-left: 25px; |
| 32 | list-style: circle outside none; |
| 33 | li { |
| 34 | text-align: justify; |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | h2 { |
| 39 | font-family: @title_fonts; |
| 40 | font-size: 1.2em; |
| 41 | margin-top: 20px; |
| 42 | border: none; |
| 43 | border-bottom: 0px; |
| 44 | } |
| 45 | |
| 46 | } |
| 47 | |