Merge branch 'expo-info' into dev

fixes #5
This commit is contained in:
2021-02-14 00:57:09 +01:00
5 changed files with 53 additions and 9 deletions

View File

@ -204,8 +204,12 @@ article.main p.signature {
/* Exposition */
article .gallery {
display:inline-block;
position:relative;
display:flex;
flex-direction:row;
justify-content:space-around;
align-self:flex-end;
flex-wrap:wrap;
margin:auto;
margin-top:0;
@ -215,6 +219,22 @@ article.exposition .gallery {
text-align:center;
}
article .gallery .gallery-item {
display:inline-block;
position:relative;
margin:0.75rem;
margin-top:0.75rem;
margin-top:1.6rem;
}
article .gallery .item-title {
font-size:0.9rem;
margin:0rem;
padding:0rem;
padding-top:0rem;
display:block;
}
article .gallery img {
max-height:30vh;
max-width:40vw;
@ -362,7 +382,7 @@ article.explorer .gallery {
text-align:center;
}
article.explorer p {
article.explorer p.intro {
width:55vw;
margin:auto;
margin-bottom:2rem;
@ -590,6 +610,14 @@ article.explorer table .photo {
/* Divers */
article.divers .gallery {
justify-content:flex-start;
}
article.divers .gallery img {
margin:0.7rem;
}
article #stats {
margin-top:2.5rem;
margin-bottom:1.5rem;
@ -605,7 +633,13 @@ article #stats .stat {
margin-left:4vw;
}
@media only screen and (max-width:1000px) {
@media only screen and (max-width:600px) {
article.divers .gallery {
justify-content:center;
}
}
@media only screen and (max-width:1000px) {
article #stats {
display:block;
}