123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //
- // 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: inline-block;
- 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;
- }
- .header-stats ul {
- li {
- display: block;
- float: left;
- }
- }
- .page-user-profile .profile-side-avatar img {
- width: 100%;
- height: auto;
- margin-top: @line-height-computed * -5.5;
- margin-bottom: @line-height-computed;
- }
- }
|