1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- body{
- display: flex;
- flex-direction: column;
- align-items: center;
- background: #607D80;
- }
- .send{
-
- align-content: center;
- width: 360px;
- height: 480px;
- background-color: #BFFAFF;
- border: solid 5px #9DCDD1;
- }
- .inp{
- background: #9DCDD1;
- padding: 10px;
- }
- .user_name{
- width: 74%;
- }
- .user_massege{
- width: 49%;
- }
- .chat{
- height: 380px;
- padding: 10px;
- font-size: 10px;
- overflow-x: scroll;
- white-space: normal;
- background: #BFFAFF;
- }
- .chat div {
- margin-top:10px;
- width: auto;
- border-bottom: solid #238078 1px;
- }
- .chat b {
- font-size: 14px;
- color: #397A80;
- }
- .chat time{
- font-size: 12px;
- margin-left: 5px;
- color:#238078;
- }
|