Clean up formatting for album title and description

This commit is contained in:
Junior 2022-02-15 18:27:13 +00:00
parent 9aa7f505e7
commit 65652f92de
2 changed files with 13 additions and 2 deletions

View File

@ -14,8 +14,9 @@ if ( $currentuser->isLoggedIn() ) {
}
?>
<div class="albumdetails hidden" id="albumdetails">
<h2><b>Album Title:</b> <span id="albumtitle"></span></h2>
<h2>Album Description:</h2>
<div><span class="albuminfo_label">Album Title:</span> <span class="albuminfo" id="albumtitle"></span></div>
<div class="albuminfo_label">Album Description:</div>
<div class="albuminfo spacebelow_small" id="albumdescription"></div>
<div id="albumdescription"></div>
</div>
<div id="albumcontents">

View File

@ -271,3 +271,13 @@ table tr td
.hidden {
display: none;
}
.albuminfo_label {
font-weight: bold;
font-size: 150%;
}
.albuminfo {
font-size: 125%;
}
.spacebelow_small {
margin-bottom: 1em;
}