| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- @import '_variables';
- @import '_mixins';
- @import 'card';
- @import 'photo-rail';
- .profile-tabs {
- @include panel(auto, 900px);
- .timeline-container {
- float: right;
- width: 68% !important;
- max-width: unset;
- }
- }
- .profile-banner {
- margin-bottom: 4px;
- background-color: var(--bg_panel);
- a {
- display: block;
- position: relative;
- padding: 33.34% 0 0 0;
- }
- img {
- max-width: 100%;
- position: absolute;
- top: 0;
- }
- }
- .profile-tab {
- padding: 0 4px 0 0;
- box-sizing: border-box;
- display: inline-block;
- font-size: 14px;
- text-align: left;
- vertical-align: top;
- max-width: 32%;
- top: 50px;
- }
- .profile-result .username {
- margin: 0 !important;
- }
- .profile-result .tweet-header {
- margin-bottom: unset;
- }
- @media(max-width: 700px) {
- .profile-tabs {
- width: 100vw;
- max-width: 600px;
- .timeline-container {
- width: 100% !important;
- .tab-item wide {
- flex-grow: 1.4;
- }
- }
- }
- .profile-tab {
- width: 100%;
- max-width: unset;
- position: initial !important;
- padding: 0;
- }
- }
- @media (min-height: 900px) {
- .profile-tab.sticky {
- position: sticky;
- }
- }
|