47 lines
814 B
CSS
47 lines
814 B
CSS
/* Copyright (C) 2021 Alexander Rosenberg
|
|
* This file is AGPL v3. See LICENSE file for more information
|
|
*/
|
|
.album-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
color: inherit;
|
|
text-decoration: inherit;
|
|
height: min-content;
|
|
margin-bottom: 3em;
|
|
margin-left: 3em;
|
|
margin-right: 3em;
|
|
}
|
|
|
|
.album-thumbnail {
|
|
width: 20vw;
|
|
height: 20vw;
|
|
object-fit: cover;
|
|
user-select: none;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.album-title {
|
|
font-size: large;
|
|
word-wrap: normal;
|
|
text-align: center;
|
|
}
|
|
|
|
.album-length {
|
|
font-size: medium;
|
|
}
|
|
|
|
.sidebar-image-wrapper {
|
|
width: 10vw;
|
|
height: 10vw;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sidebar-image {
|
|
object-fit: cover;
|
|
height: 100%;
|
|
width: 100%;
|
|
user-select: none;
|
|
pointer-events: none;
|
|
}
|