Positionnement et taille des images

This commit is contained in:
Vincent Calame 2020-01-09 22:17:13 +01:00 committed by root
parent 5e8ea1fd81
commit 8b15ae849c
1 changed files with 50 additions and 1 deletions

View File

@ -39,7 +39,16 @@
margin-top: 30px;
}
@media screen and (max-width: 600px) {
@media screen and (max-width: 1240px) {
.spip_documents_right img {
width: 160px;
height: auto;
}
}
@media screen and (max-width: 980px) {
.spip_documents_right img {
width: 120px;
@ -47,3 +56,43 @@
}
}
@media screen and (max-width: 760px) {
.spip_documents_right img {
width: 100px;
height: auto;
}
}
@media screen and (max-width: 640px) {
.spip_documents_right img {
width: 80px;
height: auto;
}
}
@media screen and (max-width: 512px) {
.spip_documents_right img {
width: 60px;
height: auto;
}
}
.spip_documents_right {
margin-left: 5px;
display: block;
}
.spip_documents_center {
display: block;
margin-top: 15px;
margin-bottom: 15px;
text-align: center;
clear: both;
}