]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/standalone/videos/embed.scss
Translated using Weblate (Russian)
[github/Chocobozzz/PeerTube.git] / client / src / standalone / videos / embed.scss
CommitLineData
8cbc40b2
C
1@use '_variables' as *;
2@use '_mixins' as *;
3@use 'video.js/dist/video-js';
2a19a1e4
C
4
5$assets-path: '../../assets/';
fa12eacc 6@use '../../sass/player/index';
202e7223 7
d4f3fea6
C
8[hidden] {
9 display: none !important;
10}
11
12body {
13 font-family: $main-fonts;
14 font-weight: $font-regular;
15 color: #000;
16}
17
202e7223
C
18video {
19 width: 99%;
20}
21
22/* fill the entire space */
931d3430
C
23html,
24body {
202e7223
C
25 height: 100%;
26 margin: 0;
33d78552 27 background-color: #000;
202e7223
C
28}
29
5abc96fc
C
30#video-wrapper {
31 width: 100%;
32 height: 100%;
33}
34
86f278cb 35.video-js.vjs-peertube-skin {
202e7223
C
36 width: 100%;
37 height: 100%;
3d09cdbf 38 overflow: hidden;
202e7223 39
86f278cb
C
40 .vjs-poster {
41 background-size: 100% auto;
42 }
202e7223 43}
d4f3fea6
C
44
45#error-block {
46 display: none;
47
48 flex-direction: column;
49 align-content: center;
50 justify-content: center;
51 text-align: center;
d4f3fea6
C
52 width: 100%;
53 height: 100%;
931d3430 54 color: #fff;
d4f3fea6
C
55 box-sizing: border-box;
56 font-family: sans-serif;
931d3430 57}
d4f3fea6 58
931d3430
C
59#error-title {
60 font-size: 45px;
61 margin-bottom: 5px;
62}
d4f3fea6 63
931d3430
C
64#error-content {
65 font-size: 24px;
d4f3fea6
C
66}
67
3f9c4955
C
68#placeholder-preview {
69 position: absolute;
70 top: 0;
71 left: 0;
72 background-size: 100% auto;
73 width: 100%;
74 height: 100%;
75 background-position: 50% 50%;
d3f4689b
C
76 background-repeat: no-repeat;
77}
78
79.player-information {
80 width: 100%;
81 color: #fff;
82 background: rgba(0, 0, 0, 0.6);
83 padding: 20px 0;
84 position: absolute;
85 bottom: 0;
86 text-align: center;
3f9c4955
C
87}
88
d4f3fea6
C
89@media screen and (max-width: 300px) {
90 #error-block {
91 font-size: 36px;
931d3430 92 }
d4f3fea6 93
931d3430
C
94 #error-content {
95 font-size: 14px;
d4f3fea6
C
96 }
97}
98