styles.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
  3. */
  4. /* https://github.com/ckeditor/ckeditor5/issues/913 */
  5. @media only screen and (min-width: 1600px) {
  6. .main .main__content-wide .main__content-inner {
  7. width: 800px;
  8. }
  9. }
  10. /* https://github.com/ckeditor/ckeditor5-build-decoupled-document/issues/12 */
  11. @media only screen and (max-width: 1360px) {
  12. .main .main__content-wide .main__content-inner {
  13. max-width: 900px;
  14. }
  15. }
  16. /* https://github.com/ckeditor/ckeditor5/issues/913 */
  17. @media only screen and (min-width: 1360px) {
  18. .main .main__content.main__content-wide {
  19. padding-right: 0;
  20. }
  21. .main .main__content-wide .main__content-inner {
  22. max-width: 800px;
  23. }
  24. }
  25. /* https://github.com/ckeditor/ckeditor5/issues/1007 */
  26. @media only screen and (min-width: 1600px) {
  27. .main .main__content.main__content-wide {
  28. /*
  29. * `.main__content` by default has 760px width and 340px right padding.
  30. * `.main__content-wide` is 40px wider (800px), that's why we are reducing this right padding.
  31. */
  32. padding-right: 300px;
  33. }
  34. }