| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- $easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
- %transitionForCompactMode {
- // set transition-duration (normal -> compact)
- transition: all 300ms $easeInOutCubic;
- }
- /*
- * Styles
- */
- .grw-users-info {
- .users-meta {
- margin-left: 30px;
- }
- .user-page-name {
- margin: 0;
- font-size: 2.5em;
- color: #666;
- }
- .picture {
- width: 72px;
- height: 72px;
- }
- div.user-page-meta {
- padding-left: 0;
- color: #999;
- .user-page-username {
- font-weight: bold;
- }
- }
- }
- .draft-list-item {
- .icon-container {
- .icon-copy,
- .draft-delete,
- .icon-edit {
- cursor: pointer;
- }
- }
- }
|