_actualite.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. .block-entity-fieldnodetitle{
  8. grid-column: 2 /span 6;
  9. margin: 0;
  10. .field--name-title{
  11. font-family: "Source Code Pro";
  12. font-size: 4rem;
  13. font-weight: 500;
  14. }
  15. }
  16. .block-entity-fieldnodefield-date{
  17. grid-column: 2;
  18. text-transform: uppercase;
  19. color: $blue-dark;
  20. font-size: 1.5rem;
  21. font-weight: 800;
  22. }
  23. }
  24. }
  25. .block-region-second{
  26. .block-entity-fieldnodebody{
  27. width: 90%;
  28. .panel-body{
  29. #outputtext{
  30. overflow-y: visible !important;
  31. }
  32. }
  33. }
  34. }
  35. .layout__region--third{
  36. .block-region-third{
  37. max-width: 70%;
  38. }
  39. }
  40. }