_users-list.scss 642 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Component: Users List
  3. * ---------------------
  4. */
  5. .users-list {
  6. @extend .list-unstyled;
  7. > li {
  8. float: left;
  9. padding: 10px;
  10. text-align: center;
  11. width: 25%;
  12. img {
  13. @include border-radius(50%);
  14. height: auto;
  15. max-width: 100%;
  16. }
  17. > a:hover {
  18. &,
  19. .users-list-name {
  20. color: #999;
  21. }
  22. }
  23. }
  24. }
  25. .users-list-name,
  26. .users-list-date {
  27. display: block;
  28. }
  29. .users-list-name {
  30. color: $gray-700;
  31. font-size: $font-size-sm;
  32. overflow: hidden;
  33. text-overflow: ellipsis;
  34. white-space: nowrap;
  35. }
  36. .users-list-date {
  37. color: darken($gray-500, 20%);
  38. font-size: 12px;
  39. }