mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
81 lines
1.0 KiB
SCSS
81 lines
1.0 KiB
SCSS
.packagetile {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0 7px 7px 0;
|
|
min-width: 250px;
|
|
}
|
|
|
|
li.d-flex {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.packagetile a {
|
|
display: block;
|
|
padding-bottom: 66.66%;
|
|
border-radius: 3px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
|
|
.packagegridscrub {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 5px;
|
|
background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5));
|
|
}
|
|
|
|
.packagegridinfo {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 1em;
|
|
|
|
h3 {
|
|
color: white;
|
|
font-size: 120%;
|
|
font-weight: bold;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
small {
|
|
color: #ddd;
|
|
font-size: 75%;
|
|
font-weight: bold;
|
|
}
|
|
|
|
p {
|
|
display: none;
|
|
color: #ddd;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
|
|
.packagetile a:hover {
|
|
.packagegridinfo {
|
|
top: 0;
|
|
}
|
|
|
|
h3 {
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
p {
|
|
display: block;
|
|
}
|
|
|
|
.packagegridscrub {
|
|
top: 0;
|
|
background: rgba(0,0,0,0.8);
|
|
}
|
|
}
|