edit.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. *, *:before, *:after {
  6. -webkit-box-sizing: border-box;
  7. -moz-box-sizing: border-box;
  8. box-sizing: border-box;
  9. }
  10. body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
  11. margin: 0;
  12. padding: 0;
  13. }
  14. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  15. display: block;
  16. }
  17. audio, canvas, video {
  18. display: inline-block;
  19. }
  20. img {
  21. border: none;
  22. vertical-align: middle;
  23. }
  24. ul, ol {
  25. /*list-style: none;*/
  26. }
  27. .clear {
  28. *zoom: 1; /* for IE 6/7 */
  29. }
  30. .clear:before, .clear:after {
  31. height: 0;
  32. content: "";
  33. font-size: 0;
  34. display: table;
  35. line-height: 0; /* for Opera */
  36. visibility: hidden;
  37. }
  38. .clear:after {
  39. clear: both;
  40. }
  41. body {
  42. font-size: 14px;
  43. color: #666;
  44. font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Tahoma, STXihei, "华文细黑", STHeiti, "Helvetica Neue", Helvetica, Tahoma, "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "宋体", Heiti, "黑体", sans-serif;
  45. background: #fff;
  46. text-align: center;
  47. }
  48. #layout {
  49. text-align: left;
  50. }
  51. #layout > header, .btns {
  52. padding: 15px 0;
  53. width: 90%;
  54. margin: 0 auto;
  55. }
  56. .btns {
  57. padding-top: 0;
  58. }
  59. .btns button {
  60. padding: 2px 8px;
  61. }
  62. #layout > header > h1 {
  63. font-size: 20px;
  64. margin-bottom: 10px;
  65. }
  66. .btns button, .btn {
  67. padding: 8px 10px;
  68. background: #fff;
  69. border: 1px solid #ddd;
  70. -webkit-border-radius: 3px;
  71. border-radius: 3px;
  72. cursor: pointer;
  73. -webkit-transition: background 300ms ease-out;
  74. transition: background 300ms ease-out;
  75. }
  76. .btns button:hover, .btn:hover {
  77. background: #f6f6f6;
  78. }
  79. #json-templ,#beautify-json-dialog{ position:fixed; float:left; top:100px; left:300px; border:2px solid #ccc; display:none; z-index:999999;}
  80. .markdown-body.editormd-preview-container table tr td{ max-width:300px;}
  81. .btn-primary {
  82. background-color: #006dcc;
  83. }
  84. .btn-primary:hover {
  85. background-color: #04c;
  86. }
  87. #page_title,
  88. #cat_id,
  89. #order {
  90. height: 30px;
  91. }
  92. #cat_id ,#parent_cat_id {
  93. width: 120px;
  94. }
  95. #s_number {
  96. width: 120px;
  97. margin-right: 20px;
  98. height: 28px;
  99. }
  100. ol.linenums li {
  101. list-style-type: none !important;
  102. }