_user.scss 867 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. $easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
  2. %transitionForCompactMode {
  3. // set transition-duration (normal -> compact)
  4. transition: all 300ms $easeInOutCubic;
  5. }
  6. /*
  7. * Styles
  8. */
  9. .grw-users-info {
  10. .users-meta {
  11. margin-left: 30px;
  12. }
  13. .user-page-name {
  14. margin: 0;
  15. font-size: 2.5em;
  16. color: $secondary;
  17. }
  18. .picture {
  19. width: 120px;
  20. height: 120px;
  21. }
  22. div.user-page-meta {
  23. padding-left: 0;
  24. color: $gray-400;
  25. .user-page-username {
  26. font-weight: bold;
  27. }
  28. }
  29. }
  30. .grw-usermenu-notification-icon {
  31. position: absolute;
  32. top: -4px;
  33. left: 30px;
  34. }
  35. .draft-list-item {
  36. .icon-container {
  37. .icon-copy,
  38. .draft-delete,
  39. .icon-edit {
  40. cursor: pointer;
  41. }
  42. }
  43. }
  44. .user-page-footer {
  45. .grw-user-page-list-m {
  46. svg {
  47. width: 35px;
  48. height: 35px;
  49. margin-bottom: 6px;
  50. }
  51. }
  52. }