This commit is contained in:
root
2025-10-21 02:44:19 +03:00
parent 749ea2af21
commit 9113975f4b
5 changed files with 151 additions and 5 deletions

View File

@@ -103,4 +103,31 @@ form {
.registration-error {
text-align: center;
margin-top: 10px;
}
}
.fold-button {
margin-bottom: 10px;
color: #7dd3fc;
border: 2px solid #7dd3fc;
border-radius: 5px;
background-color: transparent;
cursor: pointer;
transition: all 0.5s ease;
padding: 5px 8px;
}
.fold-button:hover {
background-color: #1e293b;
}
.one-post-content {
max-height: 500px;
overflow: hidden;
transition: all 0.5s ease;
opacity: 1;
}
.one-post-content.hidden {
max-height: 0;
opacity: 0;
}