]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/video-list/overview/video-overview.component.scss
Merge branch 'develop' into shorter-URLs-channels-accounts
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / video-list / overview / video-overview.component.scss
1 @import '_variables';
2 @import '_mixins';
3 @import '_miniature';
4
5 .section-title {
6 // make the element span a full grid row within .videos grid
7 grid-column: 1 / -1;
8 }
9
10 .margin-content {
11 @include grid-videos-miniature-layout;
12 }
13
14 .section {
15 &:first-child {
16 padding-top: 30px;
17
18 .section-title {
19 border-top: 0 !important;
20 }
21 }
22
23 .section-title {
24 font-size: 24px;
25 font-weight: $font-semibold;
26 padding-top: 15px;
27 margin-bottom: 15px;
28 display: flex;
29 justify-content: space-between;
30
31 &:not(h2) {
32 border-top: 1px solid $separator-border-color;
33 }
34
35 a {
36 color: pvar(--mainForegroundColor);
37
38 &:hover,
39 &:focus:not(.focus-visible),
40 &:active {
41 text-decoration: none;
42 outline: none;
43 }
44 }
45 }
46
47 &.channel {
48 .section-title {
49 a {
50 display: flex;
51 width: fit-content;
52 align-items: center;
53
54 my-actor-avatar {
55 @include actor-avatar-size(28px);
56
57 font-size: initial;
58 margin-right: 8px;
59 }
60 }
61
62 .followers {
63 color: pvar(--greyForegroundColor);
64 font-weight: normal;
65 font-size: 14px;
66 margin-left: 10px;
67 position: relative;
68 top: 2px;
69 }
70 }
71 }
72
73 .show-more {
74 position: relative;
75 top: -5px;
76 display: inline-block;
77 font-size: 16px;
78 text-transform: uppercase;
79 color: pvar(--greyForegroundColor);
80 margin-bottom: 10px;
81 font-weight: $font-semibold;
82 text-decoration: none;
83 }
84
85 @media screen and (max-width: $mobile-view) {
86 max-height: initial;
87 overflow: initial;
88
89 .section-title {
90 font-size: 17px;
91 margin-left: 10px;
92 }
93 }
94 }