user-profile.less 658 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // User Profile Flavor
  3. // --------------------------------------------------
  4. // Text align disabled account node
  5. .page-user-profile .page-header .alert {
  6. text-align: center;
  7. }
  8. // Style user's avatar
  9. .page-user-profile .page-header {
  10. img {
  11. background-color: #fff;
  12. border: 3px solid #fff;
  13. border-radius: @border-radius-large;
  14. .shadow-2dp();
  15. }
  16. .user-status .status-icon {
  17. width: 14px;
  18. height: 14px;
  19. font-size: 14px;
  20. line-height: 14px;
  21. }
  22. }
  23. .page-user-profile .profile-side-avatar {
  24. img {
  25. background-color: #fff;
  26. border: 3px solid #fff;
  27. border-radius: @border-radius-large;
  28. .shadow-4dp();
  29. }
  30. }