Files
lichterei-web/assets/css/templates/notes.css
Bastian Allgeier 01277f79f2 first version
2019-01-13 23:17:34 +01:00

21 lines
308 B
CSS

.notes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
grid-gap: 1.5rem;
grid-auto-rows: 1fr;
}
.note {
border: 2px solid #000;
}
.note a {
display: block;
padding: 1rem;
line-height: 1.25em;
}
.note h2 {
font-size: 1rem;
}
.note time {
font-size: .75rem;
}