1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .message {
- padding: 10px;
- margin: 5px;
- max-width: 50%;
- border-radius: 10px;
- box-shadow: 21px -16px 11px -9px rgba(34, 60, 80, 0.29);
- background-color: rgb(182, 230, 176);
- p {
- word-wrap: break-word;
- }
- span {
- display: block;
- padding: 5px;
- height: 25px;
- border-radius: 20px;
- background-color:rgb(187, 223, 235);
- color: rgb(13, 12, 17);
- text-align: center;
- }
-
- }
- .myMessage {
- align-self: flex-end;
- background-color: rgb(240, 231, 136);
- }
- .messageBox {
- display: flex;
- padding: 20px;
- border-radius: 10px;
- box-shadow: 21px -26px 11px -23px rgba(20, 43, 51, 0.22);
- background-color:rgb(243, 243, 243)
- }
- .usersBox {
- align-content: flex-end;
- text-align: center;
- padding: 20px;
- margin-left: 10px;
- width: 20%;
- border-radius: 10px;
- box-shadow: 21px -26px 11px -23px rgba(20, 43, 51, 0.22);
- background-color:rgb(243, 243, 243);
- .online {
- border-radius: 5px;
- margin-bottom: 5px;
- box-shadow: 21px -26px 11px -23px rgba(0, 0, 0, 0.22);
- background-color:rgb(211, 204, 204)
- }
- }
|