_actualite.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .path-node.page-node-type-actualite{
  2. .layout__region--top{
  3. background-color: $background-actus;
  4. .block-region-top{
  5. display: grid;
  6. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  7. padding-top: 2rem;
  8. .block-entity-fieldnodefield-actu-type{
  9. grid-column: 2;
  10. }
  11. .block-entity-fieldnodetitle{
  12. grid-column: 2 /span 6;
  13. margin: 0;
  14. .field--name-title{
  15. font-family: "Source Code Pro";
  16. font-size: 4rem;
  17. font-weight: 500;
  18. }
  19. }
  20. .block-entity-fieldnodefield-date{
  21. grid-column: 2;
  22. text-transform: uppercase;
  23. color: $blue-dark;
  24. font-size: 1.5rem;
  25. font-weight: 800;
  26. }
  27. }
  28. }
  29. }
  30. .layout__region--second{
  31. flex: 0 1 45%;
  32. .block-region-second{
  33. width: 90%;
  34. .block-entity-fieldnodebody{
  35. .panel-body{
  36. #outputtext{
  37. overflow-y: visible !important;
  38. }
  39. }
  40. }
  41. }
  42. }
  43. .layout__region--third{
  44. .block-region-third{
  45. width: 65%;
  46. }
  47. }