28 lines
487 B
CSS
28 lines
487 B
CSS
/* Copyright (C) 2021 Alexander Rosenberg
|
|
* This file is AGPL v3. See LICENSE file for more information
|
|
*/
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
header {
|
|
width: 100%;
|
|
margin-bottom: 1em;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#library-name {
|
|
text-align: center;
|
|
font-size: xx-large;
|
|
}
|
|
|
|
#thumbnail-grid-wrapper {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|