25 lines
328 B
CSS
25 lines
328 B
CSS
.post {
|
|
display: flex;
|
|
border-bottom: 1px solid #b3b3b3;
|
|
border-radius: 10px;
|
|
margin-bottom: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.postId {
|
|
padding: 5px;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.postBody {
|
|
padding: 5px;
|
|
}
|
|
|
|
.post:hover {
|
|
background-color: #b3b3b3;
|
|
}
|
|
|
|
.postTitle {
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
} |