2022-08-28 21:08:33 +03:00
|
|
|
.title {
|
2022-08-29 00:58:34 +03:00
|
|
|
color: #414141;
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 36px;
|
2022-03-13 16:16:46 +03:00
|
|
|
}
|
2022-08-29 00:58:34 +03:00
|
|
|
|
|
|
|
.date {
|
2022-08-28 21:08:33 +03:00
|
|
|
color: gray;
|
2022-03-13 16:16:46 +03:00
|
|
|
}
|
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.message {
|
2022-08-28 21:08:33 +03:00
|
|
|
max-width: 800px;
|
|
|
|
box-shadow: 0 0 5px 0 #c3c3c3;
|
|
|
|
margin: 10px auto;
|
|
|
|
padding: 20px;
|
2022-08-29 00:58:34 +03:00
|
|
|
display: flex;
|
|
|
|
gap: 10px;
|
|
|
|
position: relative;
|
2022-03-13 16:16:46 +03:00
|
|
|
}
|
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.message .left {
|
2022-08-28 21:08:33 +03:00
|
|
|
text-align: center;
|
2022-08-29 00:58:34 +03:00
|
|
|
border-right: 2px solid #d9d9d9;
|
2022-03-13 16:16:46 +03:00
|
|
|
}
|
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.message .left img {
|
2022-08-28 21:08:33 +03:00
|
|
|
width: 100px;
|
2022-08-29 00:58:34 +03:00
|
|
|
height: 100px;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin-right: 5px;
|
2022-03-13 16:16:46 +03:00
|
|
|
}
|
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.message .left .username {
|
|
|
|
color: #555;
|
2022-03-13 16:16:46 +03:00
|
|
|
}
|
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.content {
|
2022-08-28 21:08:33 +03:00
|
|
|
width: 70%;
|
2022-03-13 16:16:46 +03:00
|
|
|
}
|
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.reactions {
|
|
|
|
position: absolute;
|
|
|
|
right: 20px;
|
|
|
|
bottom: 20px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
2022-08-28 21:08:33 +03:00
|
|
|
}
|
2022-08-29 00:58:34 +03:00
|
|
|
|
|
|
|
.reactions div {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 5px;
|
|
|
|
padding: 4px;
|
2022-08-28 21:08:33 +03:00
|
|
|
color: #747474;
|
2022-08-29 00:58:34 +03:00
|
|
|
cursor: pointer;
|
|
|
|
transition: color 0.3s ease;
|
2022-08-28 21:08:33 +03:00
|
|
|
}
|
2022-08-29 00:58:34 +03:00
|
|
|
|
|
|
|
.reactions div:hover {
|
|
|
|
color: #151515;
|
2022-03-22 21:25:09 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.reactions div i {
|
|
|
|
font-size: 22px;
|
2022-03-22 21:25:09 +03:00
|
|
|
}
|
|
|
|
|
2022-08-28 21:08:33 +03:00
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.pagination {
|
2022-08-28 21:08:33 +03:00
|
|
|
box-shadow: 0 0 5px 0 #c3c3c3;
|
|
|
|
margin: 10px auto;
|
|
|
|
padding: 8px;
|
2022-08-29 00:58:34 +03:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
max-width: 400px;
|
|
|
|
gap: 10px;
|
|
|
|
position: relative;
|
2022-03-22 21:25:09 +03:00
|
|
|
}
|
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.pagination .back,
|
2022-08-28 21:08:33 +03:00
|
|
|
.pagination .after {
|
2022-08-29 00:58:34 +03:00
|
|
|
color: #747474;
|
|
|
|
font-size: 26px;
|
|
|
|
cursor: pointer;
|
2022-03-22 21:25:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.pagination .numbers {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 5px;
|
2022-08-28 21:08:33 +03:00
|
|
|
}
|
2022-08-29 00:58:34 +03:00
|
|
|
|
2022-08-28 21:08:33 +03:00
|
|
|
.pagination .number {
|
2022-08-29 00:58:34 +03:00
|
|
|
color: #747474;
|
|
|
|
font-size: 22px;
|
|
|
|
border: 0 0 5px #747474;
|
|
|
|
padding: 8px;
|
|
|
|
border-radius: 2px;
|
|
|
|
font-weight: 600;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 8px;
|
2022-08-28 21:08:33 +03:00
|
|
|
}
|
2022-08-29 00:58:34 +03:00
|
|
|
|
|
|
|
.pagination .number.active {
|
|
|
|
color: #4d18e6;
|
|
|
|
font-weight: 700;
|
2022-08-11 17:55:48 +03:00
|
|
|
}
|
|
|
|
|
2022-03-22 21:25:09 +03:00
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.dots {
|
|
|
|
position: absolute;
|
|
|
|
right: 20px;
|
|
|
|
font-size: 22px;
|
|
|
|
top: 10px;
|
|
|
|
color: #747474;
|
|
|
|
cursor: pointer;
|
2022-03-22 21:25:09 +03:00
|
|
|
}
|
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.dots-menu {
|
|
|
|
position: absolute;
|
|
|
|
top: 50px;
|
|
|
|
right: 0;
|
|
|
|
background-color: #e6e6e6;
|
|
|
|
width: 100px;
|
|
|
|
text-align: center;
|
|
|
|
display: none;
|
2022-03-26 23:28:10 +03:00
|
|
|
}
|
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.dots-menu.active {
|
|
|
|
display: block;
|
2022-08-28 21:08:33 +03:00
|
|
|
}
|
2022-03-26 23:28:10 +03:00
|
|
|
|
2022-08-29 00:58:34 +03:00
|
|
|
.dots-menu a {
|
|
|
|
display: block;
|
|
|
|
margin: 8px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|