You are here

entity_embed.css in Entity Embed 7.2

Same filename and directory in other branches
  1. 7 css/entity_embed.css

Generic theme-independent base styles.

File

css/entity_embed.css
View source
  1. /**
  2. * @file
  3. * Generic theme-independent base styles.
  4. */
  5. /**
  6. * Text alignment classes.
  7. */
  8. .text-align-left {
  9. text-align: left;
  10. }
  11. .text-align-right {
  12. text-align: right;
  13. }
  14. .text-align-center {
  15. text-align: center;
  16. }
  17. .text-align-justify {
  18. text-align: justify;
  19. }
  20. /**
  21. * Alignment classes (images, videos, blockquotes …).
  22. */
  23. .align-left {
  24. float: left;
  25. }
  26. .align-right {
  27. float: right;
  28. }
  29. .align-center {
  30. text-align: center;
  31. }