mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-22 22:12:24 +01:00
Use flexbox for responsive package grid
This commit is contained in:
parent
5e44f3d64c
commit
7aec5368d8
@ -1,26 +1,32 @@
|
||||
.packagegrid {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
flex-direction: row;
|
||||
flex-grow: 1;
|
||||
flex-shrink: 1;
|
||||
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.packagegrid li {
|
||||
list-style: none;
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
margin: 8px;
|
||||
flex: 1;
|
||||
display: block;
|
||||
min-width: 246px;
|
||||
min-height: 164px;
|
||||
padding: 1;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.packagegrid a {
|
||||
display: block;
|
||||
width: 246px;
|
||||
height: 164px;
|
||||
padding-bottom: 66.66%;
|
||||
border-radius: 7px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
|
||||
|
@ -6,7 +6,7 @@ html, body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
nav, main, #alerts {
|
||||
nav, main, #alerts {
|
||||
width: 90%;
|
||||
max-width: 960px;
|
||||
margin: auto;
|
||||
@ -57,7 +57,7 @@ nav a:hover {
|
||||
|
||||
header {
|
||||
padding: 20px;
|
||||
background: #113;
|
||||
background: #2988a4;
|
||||
}
|
||||
|
||||
header p {
|
||||
|
Loading…
Reference in New Issue
Block a user