contents.css 608 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. .cke_widget_wrapper:hover:after {
  6. content: "id: " attr(data-cke-widget-id);
  7. position: absolute;
  8. top: 0;
  9. right: 0;
  10. padding: 2px 4px;
  11. background: #EEE;
  12. border: solid 1px #DDD;
  13. border-radius: 2px;
  14. color: #BBB;
  15. font: bold 10px sans-serif;
  16. }
  17. .align-left {
  18. float: left;
  19. margin-right: 20px;
  20. }
  21. .align-right {
  22. float: right;
  23. margin-left: 20px;
  24. }
  25. .align-center {
  26. text-align: center;
  27. }
  28. .align-center > figure {
  29. display: inline-block;
  30. }