25 lines
344 B
Text
25 lines
344 B
Text
#library {
|
|
.component;
|
|
|
|
.art img {
|
|
width: 64px;
|
|
}
|
|
|
|
.tiles {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
grid-gap: 2px;
|
|
|
|
li {
|
|
text-align: center;
|
|
cursor: pointer;
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
height: 200px;
|
|
|
|
h2 {
|
|
font-size: 150%;
|
|
margin: 4px 0;
|
|
}
|
|
}
|
|
}
|
|
}
|