You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

135 lines
1.9 KiB

  1. /* CSS Mini Reset */
  2. html, body, div, form, fieldset, legend, label
  3. {
  4. margin: 0;
  5. padding: 0;
  6. }
  7. table
  8. {
  9. border-collapse: collapse;
  10. border-spacing: 0;
  11. }
  12. th, td
  13. {
  14. text-align: left;
  15. vertical-align: top;
  16. }
  17. h1, h2, h3, h4, h5, h6, th, td, caption { font-weight:normal; }
  18. img { border: 0; }
  19. /* ************************************** */
  20. /* Toolbar */
  21. .toolbar {
  22. padding: 13px;
  23. border-bottom: 1px #eee solid;
  24. background-color: rgba(255,255,255,0.97);
  25. position: fixed;
  26. top: 0;
  27. width: 100%;
  28. z-index: 1000;
  29. }
  30. .toolbar-left {
  31. float: left;
  32. }
  33. .toolbar-right {
  34. float: right;
  35. }
  36. .toolbar-left .item {
  37. margin-right: 8px;
  38. display: inline-block;
  39. }
  40. #draft-status {
  41. font-size: 18px;
  42. color: #aaa;
  43. }
  44. .toolbar .clear {
  45. clear: both;
  46. }
  47. /* ************************************** */
  48. /* Editor CSS */
  49. body {
  50. font-size: 22px;
  51. line-height: 30px;
  52. }
  53. body, input {
  54. font-family: Georgia,Cambria,"Times New Roman",Times,serif;
  55. }
  56. *:focus {
  57. outline: none;
  58. }
  59. .container {
  60. width: 960px;
  61. margin: 0 auto;
  62. margin-top: 63px;
  63. z-index: 0;
  64. }
  65. #post-name {
  66. margin-top: 20px;
  67. margin-bottom: 20px;
  68. border: 0;
  69. font-weight: bold;
  70. font-size: 42px;
  71. }
  72. #content {
  73. min-height: 300px;
  74. }
  75. /* editor's h1 is actually h3 */
  76. h3 {
  77. font-weight: bold;
  78. font-size: 36px;
  79. }
  80. h4 {
  81. font-weight: bold;
  82. font-size: 30px;
  83. }
  84. p {
  85. margin-bottom: 30px;
  86. }
  87. pre {
  88. font-family: 'Menlo', monospace;
  89. font-size: 15px;
  90. background-color: #f0f0f0;
  91. padding: 15px;
  92. border: 1px solid #ccc;
  93. border-radius: 5px;
  94. color: #666;
  95. }
  96. blockquote {
  97. display: block;
  98. padding-left: 20px;
  99. border-left: 6px solid #dbdbdb;
  100. margin-left: -15px;
  101. padding-left: 15px;
  102. font-style: italic;
  103. color: #555;
  104. }
  105. .editable,
  106. .secondEditable {
  107. outline: none;
  108. margin: 0 0 20px 0;
  109. padding: 0 0 20px 0;
  110. border-bottom: 1px solid #dbdbdb;
  111. border-top: 1px solid #dbdbdb;
  112. }
  113. .editable .placeholder {
  114. color: #ccc;
  115. }