Collapsable posts

This commit is contained in:
Jose Palazon 2024-09-17 10:34:59 +01:00
parent 79a1de9968
commit 1ae070a4dd
2 changed files with 28 additions and 1 deletions

View file

@ -226,3 +226,17 @@ body.dark-mode .content textarea {
color: #e0e0e0;
border: 1px solid #555;
}
.toggle-content {
background: none;
border: none;
color: #377ba8;
cursor: pointer;
font-size: 0.85em;
margin-left: 1em;
transition: color 0.3s;
}
.toggle-content:hover {
color: #2c5f8a;
}