2024-01-04 21:33:13 +01:00
|
|
|
.page-container{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
align-items: center;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post{
|
2023-12-19 17:33:46 +01:00
|
|
|
display:flex;
|
2024-01-04 21:33:13 +01:00
|
|
|
margin-top:10px;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content:center;
|
2024-01-07 01:10:31 +01:00
|
|
|
align-items: stretch;
|
2024-01-04 21:33:13 +01:00
|
|
|
border: 3px solid lightgray;
|
|
|
|
width: 80%;
|
|
|
|
padding: 15px;
|
|
|
|
border-radius: 5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-content{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#title{
|
|
|
|
font-size: 40px;
|
|
|
|
color: black;
|
|
|
|
font-weight: bold;
|
2024-01-07 01:10:31 +01:00
|
|
|
align-self: flex-start;
|
2024-01-04 21:33:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#content{
|
|
|
|
font-size: 20px;
|
|
|
|
color:black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.author{
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#author{
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comments{
|
|
|
|
display: flex;
|
|
|
|
flex-direction:column;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
width: 80%;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#comment-label{
|
|
|
|
font-size: 30px;
|
|
|
|
align-self: flex-start;
|
|
|
|
margin-left: 10%;
|
|
|
|
color:black;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.single-comment{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 90%;
|
|
|
|
border-bottom: 3px solid lightgray;
|
|
|
|
margin-top:10px;
|
|
|
|
}
|
|
|
|
|
2024-01-06 14:14:15 +01:00
|
|
|
#add_comment{
|
2024-01-04 21:33:13 +01:00
|
|
|
display: flex;
|
2024-01-06 14:14:15 +01:00
|
|
|
flex-direction: row;
|
|
|
|
width: 55%;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
align-items: center;
|
|
|
|
margin-top:30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#comment_form{
|
2024-01-04 21:33:13 +01:00
|
|
|
width: 100%;
|
2024-01-06 14:14:15 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#comment_form textarea{
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#comment_form label{
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.date_author{
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: space-between;
|
2024-01-04 21:33:13 +01:00
|
|
|
}
|
|
|
|
|
2024-01-06 14:14:15 +01:00
|
|
|
#submit{
|
|
|
|
background-color: chartreuse;
|
|
|
|
border-radius: 25px;
|
|
|
|
border: 2px solid black;
|
|
|
|
font-size: 20px;
|
|
|
|
text-decoration: none;
|
|
|
|
color:black;
|
|
|
|
font-family: Arial;
|
|
|
|
text-align: center;
|
|
|
|
}
|