24 lines
653 B
CSS
24 lines
653 B
CSS
.list-key{
|
|
font-weight:bold;
|
|
}
|
|
|
|
|
|
.list-album{
|
|
display:inline-block;
|
|
/*Album divs are blocks of a set size that are displayed side by side until they overflow onto the next line*/
|
|
margin:0.5em;
|
|
/*Put some space between the albums*/
|
|
text-align:center;
|
|
padding:0;
|
|
width:10em;
|
|
/*Set the width of the div equal to the width of the album cover so that long album titles or artist names overflow onto the next line.*/
|
|
vertical-align:top;
|
|
/*In case of aforementioned overflow, ensure the tops of all album covers in each given row are aligned.*/
|
|
}
|
|
|
|
.list-album-cover{
|
|
width:10em;
|
|
height:10em;
|
|
margin:0;
|
|
}
|