avatar.wxss 907 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .nut-avatar {
  2. background-size: 100% 100%;
  3. background-repeat: no-repeat;
  4. background-position: center center;
  5. display: inline-block;
  6. position: relative;
  7. flex: 0 0 auto;
  8. text-align: center;
  9. }
  10. .nut-avatar img {
  11. width: 100%;
  12. height: 100%;
  13. }
  14. .nut-avatar .icon {
  15. background-size: 100% 100%;
  16. position: absolute;
  17. top: 50%;
  18. left: 50%;
  19. transform: translate(-50%, -50%);
  20. }
  21. .nut-avatar .nut-icon__img {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. .nut-avatar .text {
  26. display: inline-block;
  27. width: 100%;
  28. height: 100%;
  29. text-align: center;
  30. overflow: hidden;
  31. }
  32. .nut-avatar-large {
  33. width: 60px;
  34. height: 60px;
  35. line-height: 60px;
  36. }
  37. .nut-avatar-small {
  38. width: 32px;
  39. height: 32px;
  40. line-height: 32px;
  41. }
  42. .nut-avatar-normal {
  43. width: 40px;
  44. height: 40px;
  45. line-height: 40px;
  46. }
  47. .nut-avatar-round {
  48. border-radius: 50%;
  49. overflow: hidden;
  50. }
  51. .nut-avatar-square {
  52. border-radius: 5px;
  53. }