moments.scss 927 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #moments{
  2. h4, h2{
  3. color: $color2024;
  4. }
  5. //////////////////////// à enlever quand images
  6. .__img-hero{
  7. display: none;
  8. }
  9. ////////////////////////////////
  10. .__wrapper{
  11. .__title{
  12. margin: 0.5rem 0;
  13. }
  14. }
  15. .__wrap_side{
  16. margin-top: 0.5rem;
  17. }
  18. .__wrap_content{
  19. .__head{
  20. margin: 0.5rem 0;
  21. div{
  22. & > div{
  23. font-family: 'Marianneregular';
  24. font-size: 0.8rem;
  25. padding-right: 0.5rem;
  26. &:not(:first-child){
  27. padding-left: 0.5rem;
  28. }
  29. }
  30. }
  31. }
  32. .__content{
  33. max-height: calc(1.5rem * 12 );
  34. // 1.5rem = line-height if change don't forget script.js
  35. overflow: hidden;
  36. &.is_active{
  37. max-height: 100%!important;
  38. }
  39. @media screen and (min-width: 576px) {
  40. max-height: 100%;
  41. }
  42. }
  43. .more_link.is_active{
  44. display: none!important;
  45. }
  46. }
  47. }