styles.css 857 B

1234567891011121314151617181920212223242526272829303132
  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/issues/913 */
  11. @media only screen and (min-width: 1360px) {
  12. .main .main__content.main__content-wide {
  13. padding-right: 0;
  14. }
  15. .main .main__content-wide .main__content-inner {
  16. max-width: 800px;
  17. }
  18. }
  19. /* https://github.com/ckeditor/ckeditor5/issues/1007 */
  20. @media only screen and (min-width: 1600px) {
  21. .main .main__content.main__content-wide {
  22. /*
  23. * `.main__content` by default has 760px width and 340px right padding.
  24. * `.main__content-wide` is 40px wider (800px), that's why we are reducing this right padding.
  25. */
  26. padding-right: 300px;
  27. }
  28. }