_user.scss 781 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. .draft-list-item {
  31. .icon-container {
  32. .icon-copy,
  33. .draft-delete,
  34. .icon-edit {
  35. cursor: pointer;
  36. }
  37. }
  38. }
  39. .user-page-footer {
  40. .grw-user-page-list-m {
  41. svg {
  42. width: 35px;
  43. height: 35px;
  44. margin-bottom: 6px;
  45. }
  46. }
  47. }