common.css 497 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .user-list {
  2. width: 500px;
  3. margin: 0 auto;
  4. box-shadow: 0 0 2px 5px #ccc;
  5. border-radius: 4px;
  6. padding: 10px;
  7. }
  8. .user-list table {
  9. border-collapse: collapse;
  10. width: 100%;
  11. }
  12. .user-list table tr {
  13. border-top: 1px solid #dedede;
  14. height: 32px;
  15. line-height: 32px;
  16. text-align: left;
  17. }
  18. .user-list table thead tr:first-child {
  19. border: none;
  20. }
  21. .user-list table td,
  22. .user-list table th {
  23. padding-left: 10px;
  24. }
  25. .avatar {
  26. width: 30px;
  27. height: 30px;
  28. border-radius: 50%;
  29. }