35 lines
487 B
CSS
35 lines
487 B
CSS
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.edito_content {
|
|
background-image: url("/images/couverture_scred.jpg");
|
|
background-repeat: no-repeat;
|
|
background-size: 100%;
|
|
}
|
|
|
|
.small-images img, .page-images img {
|
|
width: 6em;
|
|
padding: 2em;
|
|
}
|
|
|
|
.small-images p:nth-of-type(odd) img{
|
|
float: right;
|
|
}
|
|
|
|
.small-images p:nth-of-type(even) img{
|
|
float: left;
|
|
}
|
|
|
|
.page-images img{
|
|
float: right
|
|
}
|
|
|
|
|
|
@media (max-width: 900px) {
|
|
.small-images img {
|
|
width: 100%;
|
|
padding: 1em 0 1em 0;
|
|
}
|
|
}
|