12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- .page-actualites{
- .block-page-title-block{
- width: 75%;
- margin: auto;
- }
- .view-actus{
- padding-top: 3rem;
- padding-bottom: 6rem;
- width: 80%;
- margin: auto;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- align-items: baseline;
- justify-content: space-between;
- .views-row{
- width: 28%;
- padding: 1rem;
- &:hover{
- transform: scale(1.05);
- transition: 0.3s transform ease, 0.3s box-shadow ease;
- }
- .node-type-actualite{
- width: 30vw !important;
- .entete_actu{
- flex-direction: column;
- .image-actualite{
- width: 90%;
- margin: auto;
- img{
- width: 100%;
- height: auto;
- }
- }
- .infos-content{
- height: fit-content;
- width: 100%;
- margin: auto;
- h1{
- display: none;
- }
- }
- }
- }
- }
- }
- }
|