markdown.preview.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*************表格样式****************/
  2. .markdown-body{
  3. font-family: "Montserrat", sans-serif !important;
  4. }
  5. .editormd-preview-container table {
  6. margin-top: 0;
  7. margin-bottom: 24px;
  8. width: 100%;
  9. overflow: auto;
  10. border-bottom: none;
  11. line-height: 1.5
  12. }
  13. .editormd-preview-container table td,.editormd-preview-container table th {
  14. padding: 8px 13px;
  15. border: 1px solid #d9d9d9;
  16. word-wrap: break-word;
  17. text-align: left
  18. }
  19. .editormd-preview-container-body blockquote,.editormd-preview-container blockquote p {
  20. font-size: 14px;
  21. color: #999;
  22. }
  23. .editormd-preview-container blockquote, .editormd-html-preview blockquote{
  24. font-style: normal;
  25. }
  26. .editormd-preview-container table th {
  27. background-color: #f2f2f2;
  28. color: #333;
  29. font-weight: 400;
  30. word-break: keep-all
  31. }
  32. .editormd-preview-container table tr {
  33. background-color: #fff
  34. }
  35. .editormd-preview-container code {
  36. padding: .2em 0;
  37. margin-left: 3px;
  38. margin-right: 3px;
  39. background-color: #eee;
  40. border-radius: 3px;
  41. font-size: 1em;
  42. font-family: Consolas,"Liberation Mono",Menlo,Courier,'Microsoft Yahei',monospace;
  43. border: 0;
  44. color: #555;
  45. word-break: break-all;
  46. }
  47. /**************TOC*******************/
  48. .markdown-toc{
  49. padding: 16px 11px 4px;
  50. border: 1px solid #f0f0f0;
  51. }
  52. /***********代码样式*****************/
  53. .markdown-body .highlight pre, .markdown-body pre{
  54. padding: 0;
  55. font-size: 12px;
  56. border-radius:0;
  57. line-height: 1.4em;
  58. }
  59. .editormd-preview-container pre.prettyprint, .editormd-html-preview pre.prettyprint {
  60. padding: 0;
  61. }
  62. .hljs{
  63. padding: 10px 15px !important;
  64. }
  65. .editormd-preview-container ol.linenums, .editormd-html-preview ol.linenums{
  66. color: #999;
  67. }
  68. .editormd-preview-container ol.linenums>li:first-child,.editormd-html-preview ol.linenums>li:first-child{
  69. padding-top: 10px;
  70. }
  71. .editormd-preview-container ol.linenums>li:last-child ,.editormd-html-preview ol.linenums>li:last-child{
  72. padding-bottom: 10px;
  73. }