Change maximum cards per row #1308

This should fix #1308 by setting .container and .card-list to a
max-width of 1000px

Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Robert Martinez 2018-09-27 19:49:53 +02:00 committed by James Valleroy
parent 4b0d48839e
commit 684cd7f6a1
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -172,6 +172,10 @@ html {
position: relative; position: relative;
} }
.container {
max-width: 1000px;
}
#container-wrapper { #container-wrapper {
/*covers for footer height */ /*covers for footer height */
padding-bottom: 150px; padding-bottom: 150px;
@ -267,13 +271,12 @@ footer license-info p {
.card-list { .card-list {
width: 100%; width: 100%;
max-width: 1500px; max-width: 1000px;
margin: 0 auto; margin: 0 auto;
padding: 0 10px; padding: 0 10px;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: center; justify-content: left;
} }
.card-icon img { .card-icon img {