]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/video-list/video-overview.component.scss
use focus-visible polyfill to improve keyboard navigation
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / video-list / video-overview.component.scss
CommitLineData
2d3741d6
C
1@import '_variables';
2@import '_mixins';
3
4.section {
5 padding-top: 10px;
6
7 &:first-child {
8 padding-top: 30px;
9 }
6aff854c
C
10
11 my-video-miniature {
12 text-align: left;
13 }
2d3741d6
C
14}
15
16.section-title {
17 font-size: 17px;
18 font-weight: $font-semibold;
19 margin-bottom: 20px;
20
21 a {
e78980eb
RK
22 &:hover, &:focus:not(.focus-visible), &:active {
23 text-decoration: none;
24 outline: none;
25 }
2d3741d6 26
9a0fc840 27 color: var(--mainForegroundColor);
2d3741d6 28 }
1a471091
C
29}
30
31.channel {
32 .section-title a {
33 display: flex;
34 width: fit-content;
35 align-items: center;
36
37 img {
38 @include avatar(30px);
39
40 margin-right: 10px;
41 }
42 }
6aff854c
C
43}
44
45@media screen and (max-width: 500px) {
46 .section {
47 @include video-miniature-small-screen;
48 }
2d3741d6 49}