Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. .selected {
  2. background-color: #CFD8DC !important;
  3. color: white;
  4. }
  5. .users {
  6. margin: 0 0 2em 0;
  7. list-style-type: none;
  8. padding: 0;
  9. width: 15em;
  10. }
  11. .users li {
  12. cursor: pointer;
  13. position: relative;
  14. left: 0;
  15. background-color: #EEE;
  16. margin: .5em;
  17. padding: .3em 0;
  18. height: 1.6em;
  19. border-radius: 4px;
  20. }
  21. .users li.selected:hover {
  22. background-color: #BBD8DC !important;
  23. color: white;
  24. }
  25. .users li:hover {
  26. color: #607D8B;
  27. background-color: #DDD;
  28. left: .1em;
  29. }
  30. .users .text {
  31. position: relative;
  32. top: -3px;
  33. }
  34. .users .badge {
  35. display: inline-block;
  36. font-size: small;
  37. color: white;
  38. padding: 0.8em 0.7em 0 0.7em;
  39. background-color: #607D8B;
  40. line-height: 1em;
  41. position: relative;
  42. left: -1px;
  43. top: -4px;
  44. height: 1.8em;
  45. margin-right: .8em;
  46. border-radius: 4px 0 0 4px;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement