You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_contact_list.scss 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #contactlist {
  2. display: none;
  3. background-color: black;
  4. cursor: default;
  5. > div.title {
  6. text-align: left;
  7. padding: 7px 10px;
  8. margin: 2px;
  9. color: #21B9FC;
  10. font-size: 11pt;
  11. border-bottom: 1px solid #676767;
  12. > span {
  13. margin-left: 5px;
  14. }
  15. }
  16. > ul#contacts {
  17. position: absolute;
  18. top: 31px;
  19. bottom: 0px;
  20. width: 100%;
  21. margin: 0px;
  22. padding: 0px;
  23. overflow-y: scroll;
  24. overflow-x: hidden;
  25. }
  26. .clickable {
  27. cursor: pointer;
  28. }
  29. }
  30. #contacts {
  31. >li {
  32. list-style-type: none;
  33. text-align: left;
  34. color: #FFF;
  35. font-size: 10pt;
  36. padding: 7px 10px;
  37. margin: 2px;
  38. > p {
  39. display: inline-block;
  40. vertical-align: middle;
  41. margin: 0px;
  42. }
  43. }
  44. }
  45. .avatar {
  46. padding: 0px;
  47. margin-right: 10px;
  48. vertical-align: middle;
  49. font-size: 22pt;
  50. border-radius: 20px;
  51. max-height: 30px;
  52. max-width: 30px;
  53. }