/source/Plug-in/fck/editor/css/fck_editorarea.css

http://prosporous.googlecode.com/ · CSS · 92 lines · 35 code · 10 blank · 47 comment · 0 complexity · 61c046e21ec9ca29779a1f796166d35f MD5 · raw file

  1. /*
  2. * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3. * Copyright (C) 2003-2007 Frederico Caldeira Knabben
  4. *
  5. * == BEGIN LICENSE ==
  6. *
  7. * Licensed under the terms of any of the following licenses at your
  8. * choice:
  9. *
  10. * - GNU General Public License Version 2 or later (the "GPL")
  11. * http://www.gnu.org/licenses/gpl.html
  12. *
  13. * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14. * http://www.gnu.org/licenses/lgpl.html
  15. *
  16. * - Mozilla Public License Version 1.1 or later (the "MPL")
  17. * http://www.mozilla.org/MPL/MPL-1.1.html
  18. *
  19. * == END LICENSE ==
  20. *
  21. * This is the default CSS file used by the editor area. It defines the
  22. * initial font of the editor and background color.
  23. *
  24. * A user can configure the editor to use another CSS file. Just change
  25. * the value of the FCKConfig.EditorAreaCSS key in the configuration
  26. * file.
  27. */
  28. /*
  29. The "body" styles should match your editor web site, mainly regarding
  30. background color and font family and size.
  31. */
  32. body
  33. {
  34. background-color: #ffffff;
  35. padding: 5px 5px 5px 5px;
  36. margin: 0px;
  37. }
  38. body, td
  39. {
  40. font-family: Arial, Verdana, sans-serif;
  41. font-size: 12px;
  42. }
  43. a[href]
  44. {
  45. color: -moz-hyperlinktext !important; /* For Firefox... mark as important, otherwise it becomes black */
  46. text-decoration: -moz-anchor-decoration; /* For Firefox 3, otherwise no underline will be used */
  47. }
  48. /*
  49. Just uncomment the following block if you want to avoid spaces between
  50. paragraphs. Remember to apply the same style in your output front end page.
  51. */
  52. /*
  53. p, ul, li
  54. {
  55. margin-top: 0px;
  56. margin-bottom: 0px;
  57. }
  58. */
  59. /*
  60. The following are some sample styles used in the "Styles" toolbar command.
  61. You should instead remove them, and include the styles used by the site
  62. you are using the editor in.
  63. */
  64. .Bold
  65. {
  66. font-weight: bold;
  67. }
  68. .Title
  69. {
  70. font-weight: bold;
  71. font-size: 18px;
  72. color: #cc3300;
  73. }
  74. .Code
  75. {
  76. border: #8b4513 1px solid;
  77. padding-right: 5px;
  78. padding-left: 5px;
  79. color: #000066;
  80. font-family: 'Courier New' , Monospace;
  81. background-color: #ff9933;
  82. }