editor-blocks.css 931 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. Theme Name: Penscratch 2
  3. Description: Used to style Gutenberg Blocks in the editor.
  4. */
  5. /*--------------------------------------------------------------
  6. >>> TABLE OF CONTENTS:
  7. ----------------------------------------------------------------
  8. 1.0 General Typography
  9. 2.0 General Block Settings
  10. 3.0 Blocks - Common Blocks
  11. 4.0 Blocks - Formatting
  12. 5.0 Blocks - Layout Elements
  13. 6.0 Blocks - Widgets
  14. --------------------------------------------------------------*/
  15. /*--------------------------------------------------------------
  16. 1.0 General Typography
  17. --------------------------------------------------------------*/
  18. body {
  19. background: #fff;
  20. }
  21. /* Post title */
  22. .editor-post-title__block .editor-post-title__input {
  23. color: #666;
  24. font-family: "Roboto Slab", Georgia, Times, serif;
  25. font-size: 26.25px;
  26. font-weight: 400;
  27. }
  28. @media (min-width: 50em) {
  29. .editor-post-title__block .editor-post-title__input {
  30. font-size: 32px;
  31. }
  32. }