layout.scss 654 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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: -1400px;
  14. padding-top: 5rem;
  15. }
  16. #background-animated{
  17. width: 100VW;
  18. z-index: -1;
  19. position: relative;
  20. left: -400px;
  21. }
  22. }
  23. article {
  24. &.publications,
  25. &.interviews {
  26. margin-top: 1rem;
  27. .paragraph--type--images {
  28. img {
  29. max-width: 100%;
  30. max-height: 400px;
  31. object-fit: contain;
  32. @media screen and (min-width: 992px) {
  33. width: 100%;
  34. }
  35. }
  36. }
  37. }
  38. }