Add functionality to read more button

This commit is contained in:
syeopite 2021-04-02 01:03:26 -07:00
parent 533d0a1fd4
commit c5fae84263
No known key found for this signature in database
GPG key ID: 6FA616E5A5294A82
2 changed files with 44 additions and 7 deletions

View file

@ -669,3 +669,28 @@ See https://stackoverflow.com/a/34372979 for more info */
hr {
margin: auto 0 auto 0;
}
/* Description Expandsion Styling*/
#description-box {
display: flex;
flex-direction: column;
}
#readmorebutton {
display: none
}
#readmorebutton ~ div {
overflow: hidden;
height: 8.3em;
}
#readmorebutton:checked ~ div {
overflow: unset;
height: 100%;
}
#readmorebutton + label {
order: 1;
margin-top: 20px;
}