layout.css 388 B

12345678910111213141516171819202122232425
  1. /**
  2. * @file
  3. * Presentational styles for Drupal stark theme layout.
  4. *
  5. * It is left empty for testing purposes.
  6. *
  7. * @see https://www.drupal.org/project/drupal/issues/2349711
  8. */
  9. article img,
  10. .side_notes img{
  11. width: 100%;
  12. height: 100%;
  13. object-fit: cover;
  14. }
  15. .layout-content > div{
  16. display: flex;
  17. }
  18. .side_notes{
  19. position: relative;
  20. }
  21. .side_notes > *{
  22. position: absolute;
  23. }