2016-11-08 14:49:43 -05:00
|
|
|
#video-container {
|
2016-06-05 02:48:44 -04:00
|
|
|
width: 100%;
|
2016-11-08 14:49:43 -05:00
|
|
|
height: 100%;
|
2016-06-05 02:48:44 -04:00
|
|
|
}
|
|
|
|
|
2016-11-16 14:09:36 -05:00
|
|
|
#video-not-found {
|
|
|
|
height: 300px;
|
|
|
|
line-height: 300px;
|
|
|
|
margin-top: 50px;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2016-04-28 13:55:41 -04:00
|
|
|
.embed-responsive {
|
2016-04-29 08:34:51 -04:00
|
|
|
height: 500px;
|
2017-05-05 10:08:43 -04:00
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
height: 300px;
|
|
|
|
}
|
2016-04-28 13:55:41 -04:00
|
|
|
}
|
2016-04-29 08:18:14 -04:00
|
|
|
|
2016-04-29 08:34:51 -04:00
|
|
|
#torrent-info {
|
|
|
|
font-size: 10px;
|
2016-07-19 10:45:07 -04:00
|
|
|
margin-top: 10px;
|
|
|
|
text-align: center;
|
2016-04-29 08:34:51 -04:00
|
|
|
|
|
|
|
div {
|
2016-07-19 10:45:07 -04:00
|
|
|
min-width: 60px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-04 11:04:50 -04:00
|
|
|
#video-info {
|
2017-04-21 10:40:45 -04:00
|
|
|
.video-name-views {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 18px;
|
2017-10-27 03:37:45 -04:00
|
|
|
min-height: $video-watch-title-height;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-04-21 12:26:09 -04:00
|
|
|
|
|
|
|
.video-name {
|
|
|
|
padding-left: $video-watch-info-padding-left;
|
|
|
|
}
|
2016-11-04 11:04:50 -04:00
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.video-views {
|
|
|
|
text-align: right;
|
2017-04-21 12:26:09 -04:00
|
|
|
// Keep a symmetry with the video name
|
|
|
|
padding-right: $video-watch-info-padding-left
|
2016-11-04 11:04:50 -04:00
|
|
|
}
|
2017-05-01 12:05:28 -04:00
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
}
|
2016-11-04 11:04:50 -04:00
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.video-small-blocks {
|
2017-04-21 11:12:28 -04:00
|
|
|
height: $video-watch-info-height;
|
2017-04-21 10:40:45 -04:00
|
|
|
color: $video-watch-info-color;
|
|
|
|
border-color: $video-watch-border-color;
|
|
|
|
border-width: 1px 0px;
|
|
|
|
border-style: solid;
|
|
|
|
|
|
|
|
.video-small-block {
|
|
|
|
height: $video-watch-info-height;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
a {
|
|
|
|
cursor: pointer;
|
|
|
|
transition: color 0.3s;
|
2017-05-01 12:05:28 -04:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2017-04-21 10:40:45 -04:00
|
|
|
|
|
|
|
&, &:hover {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration:none;
|
|
|
|
}
|
2017-03-08 15:35:43 -05:00
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
&:hover {
|
|
|
|
color: #000 !important;
|
|
|
|
}
|
2017-07-06 11:18:10 -04:00
|
|
|
|
|
|
|
&:hover > .glyphicon {
|
|
|
|
opacity: 1 !important;
|
|
|
|
}
|
2017-03-08 15:35:43 -05:00
|
|
|
}
|
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.option .glyphicon {
|
|
|
|
font-size: 22px;
|
|
|
|
color: inherit;
|
2017-07-06 11:18:10 -04:00
|
|
|
opacity: 0.15;
|
2017-04-21 10:40:45 -04:00
|
|
|
margin-bottom: 10px;
|
2017-07-06 11:18:10 -04:00
|
|
|
transition: opacity 0.3s;
|
2017-03-08 15:35:43 -05:00
|
|
|
}
|
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.video-small-block-text {
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: bold;
|
2017-03-08 15:35:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.video-small-block:not(:last-child) {
|
|
|
|
border-width: 0 1px 0 0;
|
|
|
|
border-color: $video-watch-border-color;
|
|
|
|
border-style: solid;
|
2016-11-04 11:04:50 -04:00
|
|
|
}
|
2017-01-20 13:22:15 -05:00
|
|
|
|
2017-07-06 11:18:10 -04:00
|
|
|
.video-small-block-author, .video-small-block-more {
|
|
|
|
a.option {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
.glyphicon {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2017-01-20 13:22:15 -05:00
|
|
|
}
|
2016-11-04 11:04:50 -04:00
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.video-small-block-share, .video-small-block-more {
|
|
|
|
a.option {
|
|
|
|
display: block;
|
2016-11-04 11:04:50 -04:00
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.glyphicon {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2016-11-04 11:04:50 -04:00
|
|
|
}
|
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.video-small-block-more .video-small-block-dropdown {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.dropdown-item .glyphicon {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2016-11-04 11:04:50 -04:00
|
|
|
}
|
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.video-small-block-rating {
|
2016-11-04 11:04:50 -04:00
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.video-small-block-like {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2017-02-26 13:59:51 -05:00
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.video-small-block-text {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2016-11-04 11:04:50 -04:00
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.glyphicon {
|
|
|
|
font-size: 18px;
|
|
|
|
margin: 0 10px 0 0;
|
2017-07-06 11:18:10 -04:00
|
|
|
opacity: 0.3;
|
2017-04-21 10:40:45 -04:00
|
|
|
}
|
2017-03-22 16:15:55 -04:00
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.interactive {
|
|
|
|
cursor: pointer;
|
2017-07-06 11:18:10 -04:00
|
|
|
transition: opacity, color 0.3s;
|
2017-04-21 10:40:45 -04:00
|
|
|
|
|
|
|
&.activated, &:hover {
|
2017-07-06 11:18:10 -04:00
|
|
|
opacity: 1;
|
2017-04-21 10:40:45 -04:00
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
}
|
2017-03-22 16:15:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.video-details {
|
|
|
|
margin-top: 30px;
|
2017-03-27 15:11:37 -04:00
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.video-details-date-description {
|
2017-04-21 12:26:09 -04:00
|
|
|
padding-left: $video-watch-info-padding-left;
|
2016-11-04 11:04:50 -04:00
|
|
|
|
2017-04-21 10:40:45 -04:00
|
|
|
.video-details-date {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-details-attributes {
|
2016-11-04 11:04:50 -04:00
|
|
|
font-weight: bold;
|
2017-04-21 10:40:45 -04:00
|
|
|
font-size: 12px;
|
|
|
|
|
2017-10-27 03:37:45 -04:00
|
|
|
.video-details-attribute {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.video-details-attribute-label {
|
|
|
|
color: $video-watch-info-color;
|
|
|
|
flex-basis: 60px;
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2017-04-21 10:40:45 -04:00
|
|
|
}
|
2016-11-04 11:04:50 -04:00
|
|
|
}
|
2017-04-23 15:57:08 -04:00
|
|
|
|
|
|
|
.video-details-tags {
|
2017-10-27 03:37:45 -04:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2017-04-23 15:57:08 -04:00
|
|
|
|
|
|
|
a {
|
2017-10-27 03:37:45 -04:00
|
|
|
margin: 0 3px 3px 0;
|
2017-04-23 15:57:08 -04:00
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
}
|
2016-11-04 11:04:50 -04:00
|
|
|
}
|
2017-05-01 12:05:28 -04:00
|
|
|
|
|
|
|
@media screen and (max-width: 400px) {
|
|
|
|
.video-name-views {
|
|
|
|
font-size: 16px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 800px) {
|
|
|
|
.video-name-views {
|
|
|
|
.video-name {
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-views {
|
|
|
|
padding-left: 0px;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-small-blocks {
|
|
|
|
a, .video-small-block-text {
|
|
|
|
font-size: 13px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.glyphicon {
|
|
|
|
font-size: 18px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-small-block-author {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-details {
|
|
|
|
.video-details-date-description {
|
|
|
|
padding-left: 10px;
|
|
|
|
font-size: 13px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-details-attributes {
|
|
|
|
font-size: 11px !important;
|
|
|
|
|
|
|
|
.video-details-attribute-label {
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-04 11:04:50 -04:00
|
|
|
}
|