File size: 1,924 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
.comments{
background: #fff;
margin: 0px -15px -25px -15px;
padding: 0 20px 20px 20px;
border-top: solid 1px #dddfe2;
border-right: solid 1px #dddfe2;
margin-top: 20px;
}
.comments input[type=text]{
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: subpixel-antialiased;
min-height: 32px;
width: 430px;
border-radius: 18px;
padding: 10px;
margin-top: 10px;
padding-bottom: 10px;
resize: none;
box-sizing: border-box;
border: solid 1px #dddfe2;
word-wrap: break-word;
background-color:#eff1f3;
}
.com-div{
display:flex;
align-items:center;
justify-content: space-between;
}
.comment-text{
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: subpixel-antialiased;
word-wrap: break-word;
margin-right:6px;
margin-left:6px;
font-size: 12px;
color: #315796;
font-weight: bold;
align-items: center;
}
.delete-hover{
}
.space-del{
margin-left:10px;
color:#315796;
visibility: hidden;
}
.delete-hover:hover .space-del{
visibility: visible;
}
.each-comment{
padding:5px 0;
overflow-wrap: break-word;
margin:10px 0;
margin-left: -10px;
}
.each-comment:last-child{
border-bottom: solid 1px #ddd;
margin-left: -20px;
margin-right: -20px;
padding-left: 12px;
padding-bottom: 22px;
}
.post-comment-body{
margin-right: 20px;
min-width: 0;
}
.post-name1{
overflow-wrap: break-word;
display: inline-flex;
}
.post-me {
margin-top: -7px;
font-size: 13px;
border-radius: 18px;
padding: 8px 10px;
background: #fff;
line-height: 16px;
font-size: 13px;
display: flex;
min-width:0;
background-color:#eff1f3;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
}
.cimg{
height: 32px !important;
width: 32px !important;
}
.ll Link:hover{
background:white;
border-radius: 8px;
}
.write-comment{
display: flex;
}
.ppd{
margin-top: 15px;
margin-right: 10px;
margin-left: -5px;
}
|