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 954B

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