Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. /* App : Contact Action Message */
  2.  
  3. #app-contact-action-message {
  4. background-color: #dbdbdb;
  5. color: #FFF;
  6. background-size: cover;
  7. }
  8.  
  9. #app-contact-action-message .message-container {
  10. width: 100%;
  11. min-height: 305px;
  12. }
  13.  
  14. #app-contact-action-message .message-container .time {
  15. width: 100%;
  16. text-align: center;
  17. font-size: 0.8em;
  18. }
  19.  
  20. #app-contact-action-message .message-container .message {
  21. padding: 10px;
  22. margin: 10px;
  23. border-radius: 20px 20px 0 20px;
  24. background-color: #eaf5ff;
  25. width: 75%;
  26. margin-left: 10%;
  27. color: #000;
  28. }
  29.  
  30. #app-contact-action-message .message-container .message.self {
  31. background-color: #4fdd52;
  32. margin-left: 0;
  33. border-radius: 20px 20px 20px 0;
  34. color: #fff;
  35.  
  36. }
  37.  
  38. #app-contact-action-message .message-input {
  39. width: 100%;
  40. }
  41.  
  42. #app-contact-action-message .message-input textarea[name="message"] {
  43. width: 230px;
  44. height: 70px;
  45. color: #fff;
  46. }
  47.  
  48. #app-contact-action-message .message-input textarea[name="message"].typing {
  49. border: 2px solid #fff;
  50. color: #000;
  51.  
  52. }
  53.  
  54. #app-contact-action-message .message-actions {
  55. height: 30px;
  56. color: #666464;
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement