_user.scss 634 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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: #666;
  17. }
  18. .picture {
  19. width: 72px;
  20. height: 72px;
  21. }
  22. div.user-page-meta {
  23. padding-left: 0;
  24. color: #999;
  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. }