Advertisement
bullen

not fixed

Aug 22nd, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. /*! SCEditor | (C) 2011-2013, Sam Clarke | sceditor.com/license */
  2.  
  3. html, body, p, code:before, table {
  4. margin: 0;
  5. padding: 0;
  6. font-family: Tahoma, Verdana, Arial, Sans-Serif;
  7. font-size: 14px;
  8. color: #fff;
  9. }
  10.  
  11. html {
  12. /* Needed so the cursor will be placed at the end of the content
  13. when the there isn't enought content to fill the full viewport */
  14. height: 100%;
  15.  
  16. /* Needed for iOS scrolling bug fix */
  17. overflow: auto;
  18. -webkit-overflow-scrolling: touch;
  19. }
  20.  
  21. body {
  22. /* Needed for iOS scrolling bug fix */
  23. position: relative;
  24. overflow: auto;
  25.  
  26. /* Needed so the cursor will be placed at the end of the content
  27. when the there isn't enought content to fill the full viewport */
  28. min-height: 100%;
  29. word-wrap: break-word;
  30. }
  31.  
  32. table, td {
  33. border: 1px dotted #000;
  34.  
  35. /* Show empty cells so they can be edited */
  36. empty-cells: show;
  37. }
  38.  
  39. code:before {
  40. font-weight: bold;
  41. content: 'Code:';
  42. display: block;
  43. border-bottom: 1px solid #ccc;
  44. padding: 4px 0 3px 0;
  45. margin-bottom: 10px;
  46. }
  47.  
  48. code.phpcodeblock:before {
  49. content: 'PHP Code:' !important;
  50. }
  51.  
  52. code {
  53. font-family: Monaco, Consolas, Courier, monospace;
  54. font-size: 13px !important;
  55. padding: 10px;
  56. position: relative;
  57. background: white;
  58. margin: .25em .05em 0 0;
  59. border: 1px solid #ccc;
  60. white-space: pre;
  61. display: block;
  62. -moz-border-radius: 6px;
  63. -webkit-border-radius: 6px;
  64. border-radius: 6px;
  65. }
  66.  
  67. .ie6 code, .ie7 code {
  68. margin-top: 0;
  69. }
  70.  
  71. code:before, code {
  72. display: block;
  73. text-align: left;
  74. }
  75.  
  76. blockquote {
  77. position: relative;
  78. background: white;
  79. margin: .25em .05em 0 0;
  80. border: 1px solid #ccc;
  81. padding: 10px;
  82. -moz-border-radius: 6px;
  83. -webkit-border-radius: 6px;
  84. border-radius: 6px;
  85. }
  86.  
  87. blockquote cite {
  88. font-weight: bold;
  89. font-style: normal;
  90. display: block;
  91. font-size: 1em;
  92. border-bottom: 1px solid #ccc;
  93. margin-bottom: 10px;
  94. padding-bottom: 3px;
  95. }
  96.  
  97. /* prevent divs from being collapsed */
  98. div {
  99. min-height: 1.25em;
  100. }
  101.  
  102. h1, h2, h3, h4, h5, h6 {
  103. padding: 0;
  104. margin: 0;
  105. }
  106.  
  107. ul, ol {
  108. margin-top: 0;
  109. margin-bottom: 0;
  110. padding-top: 0;
  111. padding-bottom: 0;
  112. }
  113.  
  114. img {
  115. max-width: 100%;
  116. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement