2023-10-13 09:43:04 +04:00
|
|
|
.wrapper {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
|
|
|
width: 70%;
|
2023-11-09 09:13:24 +04:00
|
|
|
z-index: 0;
|
2023-10-13 09:43:04 +04:00
|
|
|
}
|
|
|
|
|
2023-10-15 12:58:35 +04:00
|
|
|
.user-message-trucated-text {
|
|
|
|
max-width: 60vw;
|
|
|
|
}
|
|
|
|
|
2023-10-13 09:43:04 +04:00
|
|
|
@media screen and (min-width: 992px) {
|
2023-10-15 12:58:35 +04:00
|
|
|
.user-message-trucated-text {
|
|
|
|
max-width: 30vw;
|
|
|
|
}
|
|
|
|
|
2023-10-13 09:43:04 +04:00
|
|
|
.center {
|
|
|
|
width: 40%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 576px) {
|
2023-10-15 12:58:35 +04:00
|
|
|
.user-message-trucated-text {
|
|
|
|
max-width: 70vw;
|
|
|
|
}
|
|
|
|
|
2023-10-13 09:43:04 +04:00
|
|
|
.center {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2023-11-09 09:13:24 +04:00
|
|
|
|
2023-11-10 11:19:51 +04:00
|
|
|
#post-editor {
|
|
|
|
min-height: calc(1em + 26px);
|
|
|
|
}
|
|
|
|
|
|
|
|
#title-image-preview {
|
|
|
|
width: 100%;
|
2023-11-09 09:13:24 +04:00
|
|
|
min-height: 100px;
|
2023-11-10 11:19:51 +04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 50px;
|
|
|
|
cursor: pointer;
|
|
|
|
border: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#title-image-preview i {
|
|
|
|
opacity: 0.3;
|
|
|
|
transition: opacity .3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
#title-image-preview:hover i {
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#input-title-image {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#selected-title-image {
|
|
|
|
width: 100%;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#title-image-block img {
|
2023-11-09 09:13:24 +04:00
|
|
|
}
|