not really known
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.

265 lines
3.9 KiB

  1. #main-toolbar #activity-button {
  2. background-image: url(../activity/activity-icon.svg);
  3. }
  4. #wmd-bold-button-second{
  5. background-image: url(../activity/format-text-bold.svg);
  6. }
  7. #wmd-italic-button-second{
  8. background-image: url(../activity/format-text-italic.svg);
  9. }
  10. #wmd-heading-button{
  11. background-image: url(../activity/paragraph-h1.svg);
  12. }
  13. #wmd-undo-button{
  14. background-image: url(../activity/edit-undo.svg);
  15. }
  16. #wmd-redo-button{
  17. background-image: url(../activity/edit-redo.svg);
  18. }
  19. #wmd-hr-button{
  20. background-image: url(../activity/horizontal-line3.svg);
  21. }
  22. #wmd-ulist-button{
  23. background-image: url(../activity/toolbar-bulletlist.svg);
  24. }
  25. #wmd-olist-button{
  26. background-image: url(../activity/toolbar-numbered-list.svg);
  27. }
  28. #wmd-code-button{
  29. background-image: url(../activity/code.svg);
  30. }
  31. #wmd-quote-button{
  32. background-image: url(../activity/quote.svg);
  33. }
  34. #wmd-link-button{
  35. background-image: url(../activity/link.svg);
  36. }
  37. #insertText{
  38. background-image: url(../activity/insert-picture.svg);
  39. }
  40. #wmd-showHideEditor-button{
  41. background-image:url(../activity/editor.svg);
  42. }
  43. #wmd-showHidePreview-button{
  44. background-image:url(../activity/preview.svg);
  45. }
  46. body
  47. {
  48. background-color: White;
  49. font-family: sans-serif;
  50. }
  51. blockquote {
  52. border-left: 2px dotted #888;
  53. padding-left: 5px;
  54. background: #d0f0ff;
  55. }
  56. .wmd-panel
  57. {
  58. width: 47%;
  59. float: left;
  60. margin-left: 1%;
  61. margin-top: 1%;
  62. }
  63. .wmd-button-bar
  64. {
  65. width: 100%;
  66. background-color: Silver;
  67. }
  68. .wmd-input
  69. {
  70. height: 670px;
  71. width: 100%;
  72. background-color: Gainsboro;
  73. border: 3px groove black;
  74. padding: 3px;
  75. }
  76. .wmd-preview
  77. {
  78. background-color: white;
  79. color: black;
  80. height: 670px;
  81. padding: 3px;
  82. width: 47%;
  83. float: right;
  84. margin-right: 1%;
  85. margin-top: 1.5%;
  86. overflow: auto;
  87. border-top: 3px groove black;
  88. border-right: 3px groove black;
  89. border-bottom: 3px groove black;
  90. border-left: 3px groove black;
  91. }
  92. @media screen and (max-width: 480px) {
  93. #wmd-showHidePreview-button
  94. {
  95. width:40px;
  96. height:40px;
  97. margin-top: 3%;
  98. }
  99. #wmd-showHideEditor-button
  100. {
  101. width:40px;
  102. height:40px;
  103. margin-top: 3%;
  104. }
  105. }
  106. @media screen and (min-width: 481px) and (max-width: 640px) {
  107. .wmd-input
  108. {
  109. padding: 5px;
  110. }
  111. .wmd-preview
  112. {
  113. margin-top: 1.2%;
  114. height: 675px;
  115. }
  116. #wmd-showHidePreview-button
  117. {
  118. width:40px;
  119. height:40px;
  120. margin-top: 2%;
  121. }
  122. #wmd-showHideEditor-button
  123. {
  124. width:40px;
  125. height:40px;
  126. margin-top: 2%;
  127. }
  128. }
  129. @media screen and (min-width: 641px) and (max-width: 854px) {
  130. .wmd-panel
  131. {
  132. }
  133. .wmd-input
  134. {
  135. padding: 10px;
  136. }
  137. .wmd-preview
  138. {
  139. margin-top: 1.3%;
  140. height: 684px;
  141. }
  142. #wmd-showHidePreview-button
  143. {
  144. width:40px;
  145. height:40px;
  146. margin-top: 1.8%;
  147. }
  148. #wmd-showHideEditor-button
  149. {
  150. width:40px;
  151. height:40px;
  152. margin-top: 1.8%;
  153. }
  154. }
  155. @media screen and (min-width: 855px) and (max-width: 960px) {
  156. .wmd-input
  157. {
  158. padding: 14px;
  159. }
  160. .wmd-preview
  161. {
  162. margin-top: 1.3%;
  163. height: 692px;
  164. }
  165. #wmd-showHidePreview-button
  166. {
  167. width:40px;
  168. height:40px;
  169. margin-top: 1.4%;
  170. }
  171. #wmd-showHideEditor-button
  172. {
  173. width:40px;
  174. height:40px;
  175. margin-top: 1.4%;
  176. }
  177. }
  178. @media screen and (min-width: 961px) and (max-width: 1024px) {
  179. .wmd-input
  180. {
  181. padding: 17px;
  182. }
  183. .wmd-preview
  184. {
  185. margin-top: 1.2%;
  186. height: 698px;
  187. }
  188. #wmd-showHidePreview-button
  189. {
  190. width:40px;
  191. height:40px;
  192. margin-top: 1%;
  193. }
  194. #wmd-showHideEditor-button
  195. {
  196. width:40px;
  197. height:40px;
  198. margin-top: 1%;
  199. }
  200. }
  201. @media screen and (min-width: 1024px) and (max-width: 1200px) {
  202. #wmd-showHidePreview-button
  203. {
  204. width:40px;
  205. height:40px;
  206. margin-top: 0.8%;
  207. }
  208. #wmd-showHideEditor-button
  209. {
  210. width:40px;
  211. height:40px;
  212. margin-top: 0.8%;
  213. }
  214. }
  215. @media screen and (min-width: 1200px) {
  216. .wmd-input
  217. {
  218. padding: 20px;
  219. }
  220. .wmd-preview
  221. {
  222. margin-top: 1.2%;
  223. height: 704px;
  224. }
  225. #wmd-showHidePreview-button
  226. {
  227. width:40px;
  228. height:40px;
  229. margin-top: 0.7%;
  230. }
  231. #wmd-showHideEditor-button
  232. {
  233. width:40px;
  234. height:40px;
  235. margin-top: 0.7%;
  236. }
  237. }