layout.css 455 B

123456789101112131415161718192021222324252627282930
  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. width: 300px;
  24. }
  25. .side_notes .d-flex {
  26. flex-direction: column;
  27. }