1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .node-type-actualite{
- width: 100vw;
- .entete_actu{
- display: flex;
- flex-direction: row;
- width: 75%;
- margin: auto;
- align-items: center;
- .image-actualite{
- width: 50%;
- height: 100%;
- @media (max-width: 900px) {
- width: 80%;
- height: 100% !important;
- }
- img{
- width: 100%;
- height: auto;
- object-fit: contain;
- }
- }
- .infos-content{
- // height: 350px;
-
- width: 30%;
- right: 5%;
- @media (max-width: 900px) {
- width: 45%;
- height: fit-content;
- }
- }
-
- }
- .body-content {
- .summary-content{
- width: 60%;
- margin: auto;
- }
- .links-content{
- width: 15%;
- margin-left: calc(25%/2);
- }
- }
- }
|