markdown.preview.css 1.9 KB

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