userInfo.scss 564 B

123456789101112131415161718192021222324252627282930313233343536
  1. .userAvatar {
  2. background-color: grey;
  3. width: 100px;
  4. height: 100px;
  5. font-size: 14;
  6. margin: 20px auto;
  7. }
  8. .active {
  9. background-color:rgb(30, 8, 62);
  10. }
  11. .mobileUsersInfoBox {
  12. position: absolute;
  13. top: 100px;
  14. left: 10px;
  15. z-index: 10;
  16. transition: all 1s;
  17. transform: translate(-100%);
  18. transition: all 1s;
  19. max-width: 100px;
  20. }
  21. .pcUsersAvatar {
  22. background-color: grey;
  23. width: 100px;
  24. height: 100px;
  25. font-size: 14;
  26. margin: 20px auto;
  27. cursor: pointer;
  28. }
  29. .mobileAvatar {
  30. margin: 5px auto
  31. };