cyp/app/css/library.less
2019-03-30 23:15:32 +01:00

26 lines
344 B
Plaintext

#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;
}
}
}
}