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.css 880B

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