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