Files
lichterei-web/assets/css/templates/note.css
2021-04-20 10:09:22 +02:00

31 lines
469 B
CSS

.note {
max-width: 35rem;
margin: 0 auto;
}
.note-header {
padding-top: 3rem;
margin-bottom: 3rem;
}
.note-footer {
padding: 6rem 0;
}
.note-date {
color: var(--color-text-grey);
}
.note-tags {
display: flex;
margin-bottom: 1.5rem;
}
.note-tags li {
margin-right: .5rem;
}
.note-tags a {
padding: .5rem 1rem;
display: block;
background: var(--color-light);
}
.note-tags a:hover {
background: var(--color-black);
color: var(--color-white);
}