userInfo.scss 941 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. .addToFriendsButton {
  12. width: 15px;
  13. height: 15px;
  14. top: 8px;
  15. background-color: #1976d3;
  16. transform: rotate(45deg);
  17. position: absolute;
  18. left: 8px;
  19. cursor:pointer;
  20. }
  21. .mobileButton {
  22. width: 15px;
  23. height: 15px;
  24. top: 0px;
  25. left: -5px;
  26. }
  27. .addToFriendsButton::before,
  28. .addToFriendsButton::after {
  29. content : '';
  30. display: block;
  31. width: 15px;
  32. height: 15px;
  33. background-color:inherit;
  34. border-radius: 50%;
  35. position: absolute;
  36. }
  37. .addToFriendsButton::before {
  38. top: -8px;
  39. left: 0;
  40. }
  41. .addToFriendsButton::after {
  42. top: 0;
  43. left: -8px;
  44. }