Michael Rodin
f0b8b1eb3d
Archives can now be viewed, a cover can optionally be inserted into the covers directory. Labels can now be edited.
27 lines
524 B
CSS
27 lines
524 B
CSS
div.grid-container {
|
|
display: grid;
|
|
grid-template-columns: auto 20%;
|
|
}
|
|
|
|
.archive-info {
|
|
display: grid;
|
|
grid-template-columns: max-content auto;
|
|
grid-template-rows: max-content max-content max-content max-content max-content max-content;
|
|
}
|
|
|
|
.archive-info > * {
|
|
padding: 0.3em 0;
|
|
}
|
|
|
|
.label {
|
|
display: inline-block;
|
|
padding: 0.1em;
|
|
border-radius: 0.4em;
|
|
background: linear-gradient(160deg, white, pink 65%);
|
|
}
|
|
|
|
img#cover {
|
|
margin: auto auto;
|
|
border-radius: 1em;
|
|
width: 90%;
|
|
} |