123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- .path-actus{
- .content_container{
- &>div>h2:first-of-type{
- text-align: center;
- }
- .layout__region--content{
-
- .views-element-container{
- display: grid;
- grid-template-columns: 10% minmax(0, 1fr);
- h2{
- grid-column: 2 ;
- }
- div{
- grid-column: 2;
- h2{
- margin : 1rem 0;
- }
- }
- article{
- h2{
- color: white;
- a{
- text-decoration: none;
- &:hover{
- text-decoration: underline;
- }
- }
- }
-
- }
- footer{
- text-align: center;
- margin: 1.8rem 0;
- grid-column: 2 ;
- a{
- display: inline-block;
- margin: 0 auto;
- background: black;
- color: white;
- font-family: "duke";
- font-weight: 400;
- padding: .5rem 1.5rem;
- font-size: 0.8rem;
- text-decoration: none;
- }
-
- }
- }
- #actus_blocks-block_1{
- .views-row article{
- display: grid !important;
- grid-template-columns: repeat( 2, minmax(0, 1fr));
-
- position: relative;
- height: auto;
- h2{
- grid-row: 2;
- grid-column: 1 / span 2;
- }
- div{
- grid-row: 1;
- grid-column: 1 / span 2;
- }
- }
- }
- #home_blocks-block_3{
- .views-field-field-image{
- grid-column: 1;
- }
- .slick-slide{
- background-color:transparent;
- padding: 0;
- .views-row{
- padding: 0.4rem;
- }
- }
- }
-
- }
- //carroussel
-
- .slick-slide{
- margin: 0 1rem;
- background-color: $lightblue;
- padding: 1rem;
- }
- .slick-arrow{
- position: absolute;
- height: 100%;
- cursor: pointer;
- z-index: 100;
- background-color: white;
- opacity: 0;
- transition: opacity 250ms;
- width: 10%;
- &:hover{
- opacity: .5;
- }
- }
- .slick-next{
- right: 0;
- top: 0;
- }
-
-
- }
- }
|