1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // Forum Profile
- // --------------------------------------------------
- // Small displays
- @media screen and (max-width: @screen-sm-max) {
- .page-user-profile .page-header {
- h1 img {
- width: 40px;
- height: 40px;
- }
- h1.pull-left img {
- margin-right: 6px;
- }
- h1 .user-name {
- position: relative;
- top: 2px;
- }
- .btn-aligned {
- position: relative;
- top: 8px;
- }
- .header-stats ul {
- text-align: center;
- li {
- display: block-inline;
- white-space: nowrap;
- }
- }
- }
- .page-user-profile .profile-side-avatar {
- display: none;
- }
- }
- // Tabbed on full display
- @media screen and (min-width: @screen-md-min) {
- .page-user-profile .page-header h1 img {
- display: none;
- }
- .page-user-profile .profile-side-avatar img {
- width: 100%;
- height: auto;
- margin-top: @line-height-computed * -5.5;
- margin-bottom: @line-height-computed;
- }
- }
|