markdown.preview.css 995 B

123456789101112131415161718192021222324252627282930313233
  1. /*************表格样式****************/
  2. .editormd-preview-container table thead tr{
  3. background-color: #0088CC;
  4. color: #ffffff;
  5. }
  6. .editormd-preview-container table tr:nth-child(2n) {
  7. background-color: #f8f8f8
  8. }
  9. .editormd-preview-container-body blockquote,.editormd-preview-container blockquote p {
  10. font-size: 14px;
  11. color: #999
  12. }
  13. /***********代码样式*****************/
  14. .markdown-body .highlight pre, .markdown-body pre{
  15. padding: 0;
  16. font-size: 12px;
  17. border-radius:0;
  18. line-height: 1.4em;
  19. }
  20. .editormd-preview-container pre.prettyprint, .editormd-html-preview pre.prettyprint{
  21. padding: 0;
  22. }
  23. .editormd-preview-container ol.linenums, .editormd-html-preview ol.linenums{
  24. color: #999;
  25. }
  26. .editormd-preview-container ol.linenums>li:first-child,.editormd-html-preview ol.linenums>li:first-child{
  27. padding-top: 10px;
  28. }
  29. .editormd-preview-container ol.linenums>li:last-child ,.editormd-html-preview ol.linenums>li:last-child{
  30. padding-bottom: 10px;
  31. }