layout.css 917 B

1234567891011121314151617181920212223242526272829303132
  1. @media screen and (min-width: 768px) {
  2. main:not(.home) {
  3. padding: 1.5rem 0 !important; } }
  4. @media screen and (min-width: 992px) {
  5. main:not(.home) {
  6. padding: 4rem 0 !important; } }
  7. body {
  8. position: relative; }
  9. body::before {
  10. z-index: -1;
  11. content: " ";
  12. width: 100%;
  13. height: 100%;
  14. background-image: url("../images/fond-ronds.svg");
  15. background-repeat: no-repeat;
  16. background-size: content;
  17. display: block;
  18. position: absolute;
  19. top: 0;
  20. left: 0; }
  21. article.publications, article.interviews {
  22. margin-top: 1rem; }
  23. article.publications .paragraph--type--images img, article.interviews .paragraph--type--images img {
  24. max-width: 100%;
  25. max-height: 400px;
  26. object-fit: contain; }
  27. @media screen and (min-width: 992px) {
  28. article.publications .paragraph--type--images img, article.interviews .paragraph--type--images img {
  29. width: 100%; } }