markdown.preview.css 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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-body blockquote,.editormd-preview-container blockquote p {
  21. font-size: 14px;
  22. color: #999;
  23. }
  24. .editormd-preview-container blockquote, .editormd-html-preview blockquote{
  25. font-style: normal;
  26. }
  27. .editormd-preview-container table th {
  28. background-color: #f2f2f2;
  29. color: #333;
  30. font-weight: 400;
  31. word-break: keep-all
  32. }
  33. .editormd-preview-container table tr {
  34. background-color: #fff
  35. }
  36. /**************TOC*******************/
  37. .markdown-toc{
  38. padding: 16px 11px 4px;
  39. border: 1px solid #f0f0f0;
  40. }
  41. /***********代码样式*****************/
  42. .markdown-body .highlight pre, .markdown-body pre{
  43. padding: 1em;
  44. border: none;
  45. overflow: auto;
  46. line-height: 1.45;
  47. max-height: 35em;
  48. position: relative;
  49. /*background: url(../editor.md/lib/highlight/blueprint.png) #F6F6F6;*/
  50. -moz-background-size: 30px,30px;
  51. -o-background-size: 30px,30px;
  52. -webkit-background-size: 30px,30px;
  53. background-size: 30px,30px;
  54. border-radius:4px;
  55. word-break:break-all;
  56. word-wrap:break-word;
  57. }
  58. .editormd-preview-container pre.hljs>code {
  59. border-radius: 3px;
  60. font-size: 1.1em;
  61. font-family: "Source Code Pro",Consolas,"Liberation Mono",Menlo,Courier,'Microsoft Yahei',monospace;
  62. border: 0;
  63. word-break: break-all;
  64. overflow-y: auto; overflow-x: hidden;
  65. overflow-wrap: normal;
  66. white-space: inherit
  67. }
  68. .editormd-preview-container pre.prettyprint, .editormd-html-preview pre.prettyprint {
  69. padding: 0;
  70. }
  71. .editormd-preview-container ol.linenums, .editormd-html-preview ol.linenums{
  72. color: #999;
  73. }
  74. .editormd-preview-container ol.linenums>li:first-child,.editormd-html-preview ol.linenums>li:first-child{
  75. padding-top: 10px;
  76. }
  77. .editormd-preview-container ol.linenums>li:last-child ,.editormd-html-preview ol.linenums>li:last-child{
  78. padding-bottom: 10px;
  79. }