user-profile.less 602 B

12345678910111213141516171819202122232425262728293031323334
  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-radius: @border-radius-large;
  13. .shadow-2dp();
  14. }
  15. .user-status .status-icon {
  16. width: 14px;
  17. height: 14px;
  18. font-size: 14px;
  19. line-height: 14px;
  20. }
  21. }
  22. .page-user-profile .profile-side-avatar {
  23. img {
  24. background-color: #fff;
  25. border-radius: @border-radius-large;
  26. .shadow-4dp();
  27. }
  28. }