layout.scss 634 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. main:not(.home) {
  2. @media screen and (min-width: 768px) {
  3. padding: 1.5rem 0 !important;
  4. }
  5. @media screen and (min-width: 992px) {
  6. padding: 4rem 0 !important;
  7. }
  8. }
  9. //
  10. body {
  11. #content-ontop{
  12. position: relative;
  13. top: -1200px;
  14. }
  15. #background-animated{
  16. width: 100VW;
  17. z-index: -1;
  18. position: relative;
  19. left: -400px;
  20. }
  21. }
  22. article {
  23. &.publications,
  24. &.interviews {
  25. margin-top: 1rem;
  26. .paragraph--type--images {
  27. img {
  28. max-width: 100%;
  29. max-height: 400px;
  30. object-fit: contain;
  31. @media screen and (min-width: 992px) {
  32. width: 100%;
  33. }
  34. }
  35. }
  36. }
  37. }