]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/standalone/videos/embed.scss
Store webtorrent chunks in indexdb
[github/Chocobozzz/PeerTube.git] / client / src / standalone / videos / embed.scss
CommitLineData
7bfd1b1e
C
1@import '_variables';
2@import '_mixins';
202e7223
C
3@import '~video.js/dist/video-js.css';
4@import '~videojs-dock/dist/videojs-dock.css';
5@import '../../sass/video-js-custom.scss';
6
d4f3fea6
C
7[hidden] {
8 display: none !important;
9}
10
11body {
12 font-family: $main-fonts;
13 font-weight: $font-regular;
14 color: #000;
15}
16
202e7223
C
17video {
18 width: 99%;
19}
20
21/* fill the entire space */
22html, body {
23 height: 100%;
24 margin: 0;
33d78552 25 background-color: #000;
202e7223
C
26}
27
86f278cb 28.video-js.vjs-peertube-skin {
202e7223
C
29 width: 100%;
30 height: 100%;
3d09cdbf 31 overflow: hidden;
202e7223 32
86f278cb
C
33 .vjs-poster {
34 background-size: 100% auto;
35 }
9e6b41cc 36
86f278cb
C
37 @media screen and (max-width: 350px) {
38 .vjs-play-control {
39 padding: 0 5px !important;
40 width: 25px !important;
41 }
42
43 .vjs-volume-control {
44 display: none !important;
45 }
46
47 .vjs-volume-panel {
48 width: 26px !important;
86f278cb
C
49 }
50
51 .vjs-peertube-link {
52 padding: 0;
53 }
9e6b41cc 54 }
202e7223 55}
d4f3fea6
C
56
57#error-block {
58 display: none;
59
60 flex-direction: column;
61 align-content: center;
62 justify-content: center;
63 text-align: center;
64 background-color: #141313;
65 width: 100%;
66 height: 100%;
67 color: white;
68 box-sizing: border-box;
69 font-family: sans-serif;
70
71 #error-title {
72 font-size: 45px;
73 margin-bottom: 5px;
74 }
75
76 #error-content {
77 font-size: 24px;
78 }
79}
80
81@media screen and (max-width: 300px) {
82 #error-block {
83 font-size: 36px;
84
85 #error-content {
86 font-size: 14px;
87 }
88 }
89}
90