markdown.preview.css 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*************表格样式****************/
  2. .markdown-body{
  3. -webkit-backface-visibility: hidden;
  4. font-family: Helvetica, -apple-system, BlinkMacSystemFont, "Montserrat","Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Microsoft Yahei","Helvetica Neue",Helvetica;
  5. }
  6. .editormd-preview-container table {
  7. margin-top: 0;
  8. margin-bottom: 24px;
  9. width: 100%;
  10. overflow: auto;
  11. border-bottom: none;
  12. line-height: 1.5
  13. }
  14. .editormd-preview-container table td,.editormd-preview-container table th {
  15. padding: 8px 13px;
  16. border: 1px solid #d9d9d9;
  17. word-wrap: break-word;
  18. text-align: left
  19. }
  20. .editormd-preview-container table th {
  21. background-color: #f2f2f2;
  22. color: #333;
  23. font-weight: 400;
  24. word-break: keep-all
  25. }
  26. .editormd-preview-container table tr {
  27. background-color: #fff
  28. }
  29. /**************TOC*******************/
  30. .markdown-toc{
  31. padding: 16px 11px 4px;
  32. border: 1px solid #f0f0f0;
  33. }
  34. /***********代码样式*****************/
  35. .markdown-body .highlight pre, .markdown-body pre{
  36. padding: 1em;
  37. border: none;
  38. overflow: auto;
  39. line-height: 1.45;
  40. max-height: 35em;
  41. position: relative;
  42. /*background: url(../editor.md/lib/highlight/blueprint.png) #F6F6F6;*/
  43. -moz-background-size: 30px,30px;
  44. -o-background-size: 30px,30px;
  45. -webkit-background-size: 30px,30px;
  46. background-size: 30px,30px;
  47. border-radius:4px;
  48. word-break:break-all;
  49. word-wrap:break-word;
  50. }
  51. .editormd-preview-container pre.hljs>code {
  52. border-radius: 3px;
  53. font-size: 1.1em;
  54. font-family: "Source Code Pro",Consolas,"Liberation Mono",Menlo,Courier,'Microsoft Yahei',monospace;
  55. border: 0;
  56. word-break: break-all;
  57. overflow-y: auto; overflow-x: hidden;
  58. overflow-wrap: normal;
  59. white-space: inherit
  60. }
  61. .editormd-preview-container pre.prettyprint, .editormd-html-preview pre.prettyprint {
  62. padding: 0;
  63. }
  64. .editormd-preview-container ol.linenums, .editormd-html-preview ol.linenums{
  65. color: #999;
  66. }
  67. .editormd-preview-container ol.linenums>li:first-child,.editormd-html-preview ol.linenums>li:first-child{
  68. padding-top: 10px;
  69. }
  70. .editormd-preview-container ol.linenums>li:last-child ,.editormd-html-preview ol.linenums>li:last-child{
  71. padding-bottom: 10px;
  72. }