File size: 1,615 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 111 112 113 114 115 116 117 118 |
.posts{
font-size: 12px;
margin-top: 15px;
overflow: hidden;
}
.posts-mids{
width:600px;
}
.create-post1 {
box-sizing: border-box;
background: #fff;
border-radius: 3px;
border:1px solid #ddd;
}
.create-post1 h3{
color: #4f545a;
padding: 0 0 5px 5px;
font-size: 13px;
padding-right: 10px;
}
.bor{
height:10px;
border-right: 1px solid #ced0d4;
}
.bcol{
color: #365899 !important;
}
.post-name1{
margin-top:10px;
display:flex;
font-size: 12px;
}
textarea {
resize: none;
}
.last-buttons1{
border-top:1px solid #ddd;
display:flex;
padding:5px;
}
.last-buttons1 > input[type="submit"]{
height: 23px;
width: 61px;
font-size: 12px;
font-weight: 500;
background: #3c66af;
color: #fff;
text-align: center;
border-radius: 3px;
margin-left: 450px;
}
.index-post1{
box-sizing: border-box;
background: #fff;
height: auto;
border-radius: 3px;
border: solid 1px #ddd;
margin-top: 30px;
margin-bottom: 15px;
font-size: 12px;
padding-left:15px;
overflow: -webkit-paged-x;
}
.index-post1 > button{
height: 23px;
width: 61px;
font-size: 12px;
font-weight: 500;
background: #3c66af;
color: #fff;
text-align: center;
border-radius: 3px;
}
.post-photo{
margin-top:10px;
margin-left:6px;
width:460px;
height:460px;
object-fit: cover;
}
.space{
position:absolute;
left:435px;
}
.pos-text1 {
margin-left:10px;
margin-top: 15px;
width: 460px;
}
.post-name-text{
width:350px;
}
.post-name-text{
color: #315796;
font-size: 12px;
font-weight: bold;
}
.title-top{
display: flex;
justify-content: space-between;
}
|