12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .path-actualites{
- background-color: $background-actus;
- margin: 0;
- .block-region-content{
-
- display: grid;
- grid-template-columns: 1fr repeat(4, 2fr) 1fr;
- margin: auto;
- .block-views:nth-of-type(1){
- grid-column: 2;
- }
- .block-views{
- .node-type-actualite{
-
- color: $blue-dark;
- line-height: 1.5rem;
- padding: 0.5rem;
- div:first-child{
- display: flex;
- flex-direction: column;
-
- :nth-child(1) { order: 1; }
- :nth-child(4) { order: 2; }
- :nth-child(5) { order: 3; }
- a{
- color: $blue-dark;
- }
- }
- }
- }
- }
- }
- // .node-type-actualite{
-
- // color: $blue-dark;
- // line-height: 1.5rem;
- // padding: 0.5rem;
- // div:first-child{
- // display: flex;
- // flex-direction: column;
- // :nth-child(1) { order: 1; }
- // :nth-child(4) { order: 2; }
- // :nth-child(5) { order: 3; }
- // a{
- // color: $blue-dark;
- // }
- // }
- // }
|