@import '_variables'; @import '_mixins'; .search-result { padding: 40px; .results-header { font-size: 16px; padding-bottom: 20px; margin-bottom: 30px; border-bottom: 1px solid #DADADA; .first-line { display: flex; flex-direction: row; .results-counter { flex-grow: 1; .search-value { font-weight: $font-semibold; } } .results-filter-button { cursor: pointer; .icon.icon-filter { @include icon(20px); position: relative; top: -1px; margin-right: 5px; background-image: url('../../assets/images/search/filter.svg'); } } } .results-filter { // Animation when we show/hide the filters transition: max-height 0.3s; display: block !important; overflow: hidden !important; max-height: 0; &.show { max-height: 1500px; } } } .entry { display: flex; min-height: 130px; padding-bottom: 20px; margin-bottom: 20px; &.video { my-video-thumbnail { margin-right: 10px; } .video-info { flex-grow: 1; .video-info-name { @include disable-default-a-behaviour; color: var(--mainForegroundColor); display: block; width: fit-content; font-size: 18px; font-weight: $font-semibold; } .video-info-date-views { font-size: 14px; } .video-info-account { @include disable-default-a-behaviour; display: block; width: fit-content; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; color: #585858; &:hover { color: #303030; } } } } &.video-channel { img { @include avatar(120px); margin: 0 50px 0 40px; } .video-channel-info { flex-grow: 1; width: fit-content; .video-channel-names { @include disable-default-a-behaviour; display: flex; align-items: baseline; color: var(--mainForegroundColor); width: fit-content; .video-channel-display-name { font-weight: $font-semibold; font-size: 18px; } .video-channel-name { font-size: 14px; color: $grey-actor-name; margin-left: 5px; } } } } } } @media screen and (max-width: $small-view) { .video-channel-names { flex-direction: column !important; .video-channel-name { margin-left: 0 !important; } } } @media screen and (max-width: $mobile-view) { .search-result { padding: 20px 10px; .results-header { font-size: 15px !important; } .entry { flex-direction: column; height: auto; justify-content: center; align-items: center; text-align: center; &.video { .video-info-name, .video-info-account { margin: auto; } my-video-thumbnail { margin-right: 0 !important; /deep/ .video-thumbnail { width: 100%; height: auto; img { width: 100%; height: auto; } } } } &.video-channel { .video-channel-info .video-channel-names { align-items: center; } my-subscribe-button { margin-top: 5px; } } } } }