cyp/app/css/library.less
Ondrej Zara 4995018b40 styling
2019-03-30 22:05:33 +01:00

26 lines
337 B
Plaintext

#library {
.component;
li {
padding: 0;
}
.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;
}
}
}
}