user-profile.less 592 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // Forum Profile
  3. // --------------------------------------------------
  4. // Small displays
  5. @media screen and (max-width: @screen-sm-max) {
  6. .user-profile .page-header h1 img {
  7. width: 40px;
  8. height: 40px;
  9. }
  10. .user-profile .profile-side-avatar {
  11. display: none;
  12. }
  13. }
  14. // Tabbed on full display
  15. @media screen and (min-width: @screen-md-min) {
  16. .user-profile .page-header h1 img {
  17. display: none;
  18. }
  19. .user-profile .profile-side-avatar img {
  20. width: 100%;
  21. height: auto;
  22. margin-top: @line-height-computed * -5.5;
  23. margin-bottom: @line-height-computed;
  24. }
  25. }