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.

101 lines
1.4 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. /* Editor CSS */
  20. body {
  21. font-size: 22px;
  22. line-height: 30px;
  23. }
  24. body, input {
  25. font-family: Georgia,Cambria,"Times New Roman",Times,serif;
  26. }
  27. *:focus {
  28. outline: none;
  29. }
  30. .container {
  31. width: 960px;
  32. margin: 0 auto;
  33. }
  34. #post-name {
  35. margin-top: 20px;
  36. margin-bottom: 20px;
  37. border: 0;
  38. font-weight: bold;
  39. font-size: 42px;
  40. }
  41. #content {
  42. min-height: 300px;
  43. }
  44. /* editor's h1 is actually h3 */
  45. h3 {
  46. font-weight: bold;
  47. font-size: 36px;
  48. }
  49. h4 {
  50. font-weight: bold;
  51. font-size: 30px;
  52. }
  53. p {
  54. margin-bottom: 30px;
  55. }
  56. pre {
  57. font-family: 'Menlo', monospace;
  58. font-size: 15px;
  59. background-color: #f0f0f0;
  60. padding: 15px;
  61. border: 1px solid #ccc;
  62. border-radius: 5px;
  63. color: #666;
  64. }
  65. blockquote {
  66. display: block;
  67. padding-left: 20px;
  68. border-left: 6px solid #dbdbdb;
  69. margin-left: -15px;
  70. padding-left: 15px;
  71. font-style: italic;
  72. color: #555;
  73. }
  74. .editable,
  75. .secondEditable {
  76. outline: none;
  77. margin: 0 0 20px 0;
  78. padding: 0 0 20px 0;
  79. border-bottom: 1px solid #dbdbdb;
  80. border-top: 1px solid #dbdbdb;
  81. }
  82. .editable .placeholder {
  83. color: #ccc;
  84. }