Guest User

Untitled

a guest
May 27th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <div class="msg_block">
  2. <div class="users_msg_block">
  3. <a data-triger="user1" class="new_msg_user"><img src="/images/icons/users/consultation_filled-32.png" alt="" title="" /></a>
  4. <a data-triger="user2" class="new_msg_user"><img src="/images/icons/users/consultation_filled-32.png" alt="" title="" /></a>
  5. </div>
  6. <div class="msg_bnt_active">
  7. <a><i class="fa fa-comments-o"></i></a>
  8. </div>
  9. </div>
  10.  
  11. .msg_block {
  12.  
  13. background-color: #ffab3b;
  14. position: fixed;
  15. bottom: 10px;
  16. left: 10px;
  17. z-index: 9999999;
  18. width: 50px;
  19. border-radius: 30px;
  20.  
  21. }
  22.  
  23. .users_msg_block {
  24.  
  25. display: inline-grid;
  26. margin-bottom: 10px;
  27.  
  28. }
  29.  
  30. .new_msg_user {
  31.  
  32. height: 50px;
  33. width: 50px;
  34. border-radius: 50%;
  35. background-color: #fe980f;
  36. border: 1px solid #ffab3b;
  37. padding: 9px;
  38. color: white;
  39. margin-bottom: 5px;
  40.  
  41. }
  42.  
  43. .msg_bnt_active {
  44. height: 50px;
  45. width: 50px;
  46. border-radius: 50%;
  47. background-color: #fe980f;
  48. border: 1px solid #ffab3b;
  49. }
  50.  
  51. .msg_bnt_active a {
  52. color: white;
  53. padding: 10px;
  54. font-size: 30px;
  55. }
Add Comment
Please, Sign In to add comment