Fix broken on mobile gallery
This commit is contained in:
parent
3469304cc6
commit
bc9800b1e6
|
@ -259,7 +259,6 @@ footer p:last-of-type {
|
||||||
/* CSS gallery from w3schools.com */
|
/* CSS gallery from w3schools.com */
|
||||||
|
|
||||||
div.art {
|
div.art {
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
@ -298,12 +297,22 @@ div.desc {
|
||||||
width: 49.99999%;
|
width: 49.99999%;
|
||||||
margin: 6px 0;
|
margin: 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.art {
|
||||||
|
display: inherit;
|
||||||
|
justify-content: inherit
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 500px) {
|
@media only screen and (max-width: 500px) {
|
||||||
.responsive {
|
.responsive {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.art {
|
||||||
|
display: inherit;
|
||||||
|
justify-content: inherit
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.clearfix:after {
|
.clearfix:after {
|
||||||
|
|
|
@ -259,7 +259,6 @@ footer p:last-of-type {
|
||||||
/* CSS gallery from w3schools.com */
|
/* CSS gallery from w3schools.com */
|
||||||
|
|
||||||
div.art {
|
div.art {
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
@ -298,12 +297,22 @@ div.desc {
|
||||||
width: 49.99999%;
|
width: 49.99999%;
|
||||||
margin: 6px 0;
|
margin: 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.art {
|
||||||
|
display: inherit;
|
||||||
|
justify-content: inherit
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 500px) {
|
@media only screen and (max-width: 500px) {
|
||||||
.responsive {
|
.responsive {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.art {
|
||||||
|
display: inherit;
|
||||||
|
justify-content: inherit
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.clearfix:after {
|
.clearfix:after {
|
||||||
|
|
Loading…
Reference in New Issue