markdown.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. body{
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. color: #FAFAFA;
  8. }
  9. .manual-head{
  10. padding: 5px 5px 5px 5px;
  11. position: fixed;
  12. width: 100%;
  13. }
  14. .manual-category{
  15. width: 280px;
  16. position: fixed;
  17. border-top: 1px solid #DDDDDD;
  18. bottom: 0;
  19. top: 40px;
  20. }
  21. .manual-editor-container{
  22. position: absolute;
  23. left: 280px;
  24. top: 40px;
  25. right: 0;
  26. bottom: 0;
  27. overflow: hidden;
  28. }
  29. .editormd-group{
  30. float: left;
  31. height: 32px;
  32. margin-right: 10px;
  33. }
  34. .editormd-group a{
  35. float: left;
  36. }
  37. .editormd-group a.disabled{
  38. border-color: #c9c9c9;
  39. opacity: .6;
  40. cursor: default
  41. }
  42. .editormd-group a>i {
  43. display: inline-block;
  44. width: 34px;
  45. height: 30px;
  46. line-height: 30px;
  47. text-align: center;
  48. color: #4b4b4b;
  49. border: 1px solid #ccc;
  50. background: #fff;
  51. border-radius: 4px;
  52. font-size: 15px
  53. }
  54. .editormd-group a>i.item{
  55. border-radius: 0;
  56. border-right: 0;
  57. }
  58. .editormd-group a>i.last{
  59. border-bottom-left-radius:0;
  60. border-top-left-radius:0;
  61. }
  62. .editormd-group a>i.first{
  63. border-right: 0;
  64. border-bottom-right-radius:0;
  65. border-top-right-radius:0;
  66. }
  67. .editormd-group a i:hover {
  68. background-color: #e4e4e4
  69. }
  70. .editormd-group a i:after {
  71. display: block;
  72. overflow: hidden;
  73. line-height: 30px;
  74. text-align: center;
  75. font-family: icomoon,Helvetica,Arial,sans-serif;
  76. font-style: normal;
  77. }