blob: 799e37b5dcaf43e414e6ea64ba45ed169de57990 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
#video-container {
width: 100%;
height: 100%;
}
#video-not-found {
height: 300px;
line-height: 300px;
margin-top: 50px;
text-align: center;
font-weight: bold;
}
.embed-responsive {
height: 500px;
}
#torrent-info {
font-size: 10px;
margin-top: 10px;
text-align: center;
div {
min-width: 60px;
}
}
.embed-responsive {
@media screen and (max-width: 600px) {
height: 300px;
}
}
#video-info {
border-top: 1px solid rgba(0, 0, 0, 0.1);
margin-top: 10px;
padding-top: 5px;
#video-name-actions {
#video-name {
font-size: 20px;
}
.btn .glyphicon {
position: relative;
top: 2px;
}
#rates {
display: inline-block;
margin-right: 20px;
// Remove focus style
.btn:focus {
outline: 0;
}
.activated-btn {
color: #333;
background-color: #e6e6e6;
border-color: #8c8c8c;
}
.not-interactive-btn {
cursor: default;
&:hover, &:focus, &:active {
color: #333;
background-color: #fff;
border-color: #ccc;
box-shadow: none;
outline: 0;
}
}
}
#share, #more {
font-weight: bold;
opacity: 0.85;
}
#more-menu .dropdown-item .glyphicon {
margin-right: 5px;
}
}
#video-by-date {
font-size: 13px;
opacity: 0.6;
a {
color: black;
}
#video-date:before {
content: '\002022';
margin: 0 5px;
}
}
#video-tags-views {
margin-top: 10px;
a {
margin-right: 5px;
}
#video-views {
font-weight: bold;
}
}
#video-category {
margin-top: 10px;
#category-label {
font-weight: bold;
}
}
#video-description {
margin-top: 10px;
#description-label {
font-weight: bold;
}
}
}
|