8
0

document-editor.html 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <div class="document-editor">
  2. <div class="document-editor__toolbar"></div>
  3. <div class="document-editor__editable-container">
  4. <div class="document-editor__editable">
  5. <h2 style="text-align:center;">The Flavorful Tuscany Meetup</h2>
  6. <h3 style="text-align:center;">Welcome letter</h3>
  7. <p>Dear Guest,</p>
  8. <p>We are delighted to welcome you to the annual <em>Flavorful Tuscany Meetup</em> and hope you will enjoy the programme as well as your stay at the <a href="http://ckeditor.com">Bilancino Hotel</a>.</p>
  9. <p>Please find below the full schedule of the event.</p>
  10. <table>
  11. <thead>
  12. <tr>
  13. <th colspan="2">Saturday, July 14</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. <tr>
  18. <td>9:30&nbsp;AM&nbsp;-&nbsp;11:30&nbsp;AM</td>
  19. <td>Americano vs. Brewed - “know your coffee” session with <strong>Stefano Garau</strong></td>
  20. </tr>
  21. <tr>
  22. <td>1:00&nbsp;PM&nbsp;-&nbsp;3:00&nbsp;PM</td>
  23. <td>Pappardelle al pomodoro - live cooking session with <strong>Rita Fresco</strong></td>
  24. </tr>
  25. <tr>
  26. <td>5:00&nbsp;PM&nbsp;-&nbsp;8:00&nbsp;PM</td>
  27. <td>Tuscan vineyards at a glance - wine-tasting session with <strong>Frederico Riscoli</strong></td>
  28. </tr>
  29. </tbody>
  30. </table>
  31. <blockquote>
  32. <p>The annual Flavorful Tuscany meetups are always a culinary discovery. You get the best of Tuscan flavors during an intense one-day stay at one of the top hotels of the region. All the sessions are lead by top chefs passionate about their profession. I would certainly recommend to save the date in your calendar for this one!</p>
  33. <p>Angelina Calvino, food journalist</p>
  34. </blockquote>
  35. <p>Please arrive at the <a href="http://ckeditor.com">Bilancino Hotel</a> reception desk at least <strong>half an hour earlier</strong> to make sure that the registration process goes as smoothly as possible.</p>
  36. <p>We look forward to welcoming you to the event.</p>
  37. <p><strong>Victoria Valc</strong></p>
  38. <p><strong>Event Manager</strong></p>
  39. <p><strong>Bilancino Hotel</strong></p>
  40. </div>
  41. </div>
  42. </div>
  43. <style>
  44. .document-editor {
  45. border: 1px solid var(--ck-color-base-border);
  46. border-radius: var(--ck-border-radius);
  47. /* Set vertical boundaries for the document editor. */
  48. max-height: 700px;
  49. /* This element is a flex container for easier rendering. */
  50. display: flex;
  51. flex-flow: column nowrap;
  52. overflow: hidden;
  53. }
  54. .document-editor__toolbar {
  55. /* Make sure the toolbar container is always above the editable. */
  56. z-index: 1;
  57. /* Create the illusion of the toolbar floating over the editable. */
  58. box-shadow: 0 0 5px hsla( 0,0%,0%,.2 );
  59. /* Use the CKEditor CSS variables to keep the UI consistent. */
  60. border-bottom: 1px solid var(--ck-color-toolbar-border);
  61. }
  62. /* Adjust the look of the toolbar inside of the container. */
  63. .document-editor__toolbar .ck-toolbar {
  64. border: 0;
  65. border-radius: 0;
  66. }
  67. /* Make the editable container look like the inside of a native word processor app. */
  68. .document-editor__editable-container {
  69. padding: calc( 2 * var(--ck-spacing-large) );
  70. background: var(--ck-color-base-foreground);
  71. /* Make it possible to scroll the "page" of the edited content. */
  72. overflow-y: scroll;
  73. }
  74. .document-editor__editable-container .document-editor__editable.ck-editor__editable {
  75. /* Set the dimensions of the "page". */
  76. width: 15.8cm;
  77. min-height: 21cm;
  78. /* Keep the "page" off the boundaries of the container. */
  79. padding: 1cm 2cm 2cm;
  80. border: 1px hsl( 0,0%,82.7% ) solid;
  81. border-radius: var(--ck-border-radius);
  82. background: white;
  83. /* The "page" should cast a slight shadow (3D illusion). */
  84. box-shadow: 0 0 5px hsla( 0,0%,0%,.1 );
  85. /* Center the "page". */
  86. margin: 0 auto;
  87. }
  88. /* Override the page's width in the "Examples" section which is wider. */
  89. .main__content-wide .document-editor__editable-container .document-editor__editable.ck-editor__editable {
  90. width: 18cm;
  91. }
  92. /* Set the default font for the "page" of the content. */
  93. .document-editor .ck-content,
  94. .document-editor .ck-heading-dropdown .ck-list {
  95. font: 16px/1.6 "Helvetica Neue", Helvetica, Arial, sans-serif;
  96. }
  97. /* Adjust the headings dropdown to host some larger heading styles. */
  98. .document-editor .ck-heading-dropdown .ck-dropdown__panel .ck-list > .ck-list__item {
  99. line-height: calc( 1.2 * var(--ck-line-height-base) * var(--ck-font-size-base) );
  100. min-width: 8em;
  101. }
  102. /* Set the styles for the "Heading 1". */
  103. .document-editor .ck-content h2,
  104. .document-editor .ck-heading-dropdown .ck-heading_heading1 {
  105. font-size: 2.18em;
  106. }
  107. .document-editor .ck-content h2 {
  108. line-height: 1.37em;
  109. padding-top: .342em;
  110. margin-bottom: .142em;
  111. }
  112. /* Set the styles for the "Heading 2". */
  113. .document-editor .ck-content h3,
  114. .document-editor .ck-heading-dropdown .ck-heading_heading2 {
  115. font-size: 1.75em;
  116. color: hsl( 203, 100%, 50% );
  117. }
  118. .document-editor .ck-heading-dropdown .ck-heading_heading2.ck-list__item_active {
  119. color: var(--ck-color-list-item-text-active);
  120. }
  121. /* Set the styles for the "Heading 2". */
  122. .document-editor .ck-content h3 {
  123. line-height: 1.86em;
  124. padding-top: .171em;
  125. margin-bottom: .357em;
  126. }
  127. /* Set the styles for the "Heading 3". */
  128. .document-editor .ck-content h4,
  129. .document-editor .ck-heading-dropdown .ck-heading_heading3 {
  130. font-size: 1.31em;
  131. }
  132. .document-editor .ck-content h4 {
  133. line-height: 1.24em;
  134. padding-top: .286em;
  135. margin-bottom: .952em;
  136. }
  137. /* Set the styles for the "Paragraph". */
  138. .document-editor .ck-content p,
  139. .document-editor .ck-heading-dropdown .ck-heading_paragraph {
  140. font-size: 1em;
  141. }
  142. .document-editor .ck-content p {
  143. line-height: 1.63em;
  144. padding-top: .5em;
  145. margin-bottom: 1.13em;
  146. }
  147. /* Make the block quoted text serif with some additional spacing. */
  148. .document-editor .ck-content blockquote {
  149. font-family: Georgia, serif;
  150. margin-left: calc( 2 * var(--ck-spacing-large) );
  151. margin-right: calc( 2 * var(--ck-spacing-large) );
  152. }
  153. </style>