8
0

fontsize.css 581 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. /* The values should be synchronized with the "FONT_SIZE_PRESET_UNITS" object in the "/src/fontsize/utils.js" file. */
  6. /* Styles should be prefixed with the `.ck-content` class.
  7. See https://github.com/ckeditor/ckeditor5/issues/6636 */
  8. .ck-content {
  9. & .text-tiny {
  10. font-size: .7em;
  11. }
  12. & .text-small {
  13. font-size: .85em;
  14. }
  15. & .text-big {
  16. font-size: 1.4em;
  17. }
  18. & .text-huge {
  19. font-size: 1.8em;
  20. }
  21. }