aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/video-watch/video-watch.component.scss
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-11-04 16:04:50 +0100
committerChocobozzz <florian.bigard@gmail.com>2016-11-04 16:04:50 +0100
commitd1992b93f0f4a4408f803d6320cd26a713e22d5b (patch)
treee01a8d5b6c37ebdf0f2a190a374d7b97c0508d8b /client/src/app/videos/video-watch/video-watch.component.scss
parent4d19d2f10b691650abe030d0dbb52dc7c8a62441 (diff)
downloadPeerTube-d1992b93f0f4a4408f803d6320cd26a713e22d5b.tar.gz
PeerTube-d1992b93f0f4a4408f803d6320cd26a713e22d5b.tar.zst
PeerTube-d1992b93f0f4a4408f803d6320cd26a713e22d5b.zip
Client: add more informations to watch video view
Diffstat (limited to 'client/src/app/videos/video-watch/video-watch.component.scss')
-rw-r--r--client/src/app/videos/video-watch/video-watch.component.scss53
1 files changed, 53 insertions, 0 deletions
diff --git a/client/src/app/videos/video-watch/video-watch.component.scss b/client/src/app/videos/video-watch/video-watch.component.scss
index 96420582a..e1d9300cd 100644
--- a/client/src/app/videos/video-watch/video-watch.component.scss
+++ b/client/src/app/videos/video-watch/video-watch.component.scss
@@ -24,3 +24,56 @@ my-loader {
24 height: 300px; 24 height: 300px;
25 } 25 }
26} 26}
27
28#video-info {
29 border-top: 1px solid rgba(0, 0, 0, 0.1);
30 margin-top: 10px;
31 padding-top: 5px;
32
33 #video-name-actions {
34
35 #video-name {
36 font-size: 20px;
37 }
38
39 .btn .glyphicon {
40 position: relative;
41 top: 2px;
42 }
43
44 #magnet-uri {
45 font-weight: bold;
46 opacity: 0.85;
47 }
48 }
49
50 #video-by-date {
51 font-size: 13px;
52 opacity: 0.6;
53
54 a {
55 color: black;
56 }
57
58 #video-date:before {
59 content: '\002022';
60 margin: 0 5px;
61 }
62 }
63
64 #video-tags {
65 margin-top: 10px;
66
67 a {
68 margin-right: 5px;
69 }
70 }
71
72 #video-description {
73 margin-top: 15px;
74
75 #description-label {
76 font-weight: bold;
77 }
78 }
79}