2017-04-13 00:21:04 +00:00
|
|
|
/* Structure */
|
2017-03-10 14:19:25 +00:00
|
|
|
|
|
|
|
.title {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2017-04-23 02:47:42 +00:00
|
|
|
border-bottom: 1px solid;
|
2017-03-10 14:19:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.title > * {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title .episode_name {
|
|
|
|
flex: 1 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title .refs_container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title .refs_container .mouse_catcher {
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
2017-04-13 00:21:04 +00:00
|
|
|
width: 100%;
|
2017-03-10 14:19:25 +00:00
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title .refs_container .refs {
|
2017-04-23 02:47:42 +00:00
|
|
|
border: 2px solid;
|
|
|
|
border-top:none;
|
2017-03-10 14:19:25 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
right: 0;
|
|
|
|
width: 350px;
|
|
|
|
z-index: 1;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title .refs_container:hover .refs {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-04-13 00:21:04 +00:00
|
|
|
.title .refs_container > .refs .ref {
|
2017-04-23 02:47:42 +00:00
|
|
|
border-bottom: 1px solid;
|
2017-03-10 14:19:25 +00:00
|
|
|
padding: 10px;
|
|
|
|
display: flex;
|
2017-03-15 02:10:11 +00:00
|
|
|
flex-direction: column;
|
2017-03-10 14:19:25 +00:00
|
|
|
align-items: center;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-04-13 00:21:04 +00:00
|
|
|
.title .refs_container > .refs .ref:last-child {
|
2017-03-10 14:19:25 +00:00
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2017-04-13 00:21:04 +00:00
|
|
|
.title .refs_container > .refs .ref .timecode {
|
2017-03-10 14:19:25 +00:00
|
|
|
display: inline-block;
|
|
|
|
font-size: 12px;
|
2017-03-15 02:10:11 +00:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2017-04-23 02:47:42 +00:00
|
|
|
.title .refs_container > .refs .ref .timecode:hover .time {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title .refs_container > .refs .ref .ref_content {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title .refs_container > .refs .ref .source {
|
|
|
|
font-size: 10px;
|
|
|
|
line-height: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title .refs_container > .refs .ref .ref_title {
|
|
|
|
font-style: oblique;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title .refs_container > .refs .ref .quote_byline {
|
|
|
|
font-size: 10px;
|
|
|
|
line-height: 8px;
|
|
|
|
text-align: right;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-04-13 00:21:04 +00:00
|
|
|
.title .refs_container > .refs .ref .ref_indices {
|
2017-03-15 02:10:11 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-04-13 00:21:04 +00:00
|
|
|
.title .refs_container > .refs .ref .ref_indices .timecode {
|
2017-03-15 02:10:11 +00:00
|
|
|
display: inline-block;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2017-04-13 00:21:04 +00:00
|
|
|
.title .refs_container > .refs .ref .ref_indices .timecode:first-child::before {
|
2017-03-15 02:10:11 +00:00
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
2017-04-13 00:21:04 +00:00
|
|
|
.title .refs_container > .refs .ref .ref_indices .timecode::before {
|
2017-03-15 02:10:11 +00:00
|
|
|
content: "•";
|
|
|
|
margin: 0 4px;
|
2017-03-10 14:19:25 +00:00
|
|
|
}
|
|
|
|
|
2017-04-13 00:21:04 +00:00
|
|
|
.title .refs_container > .refs .ref .timecode .ref_index {
|
2017-03-15 02:10:11 +00:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2017-04-13 00:21:04 +00:00
|
|
|
|
|
|
|
.player_container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video_container {
|
|
|
|
flex-grow: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markers_container {
|
|
|
|
overflow-y: scroll;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markers_container > .marker {
|
2017-04-23 02:47:42 +00:00
|
|
|
border-bottom: 1px solid;
|
2017-04-13 00:21:04 +00:00
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markers_container > .marker .content {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 5px;
|
|
|
|
width: 320px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markers_container > .marker.authored .content .author {
|
|
|
|
font-style: normal;
|
2017-04-13 23:46:21 +00:00
|
|
|
font-variant: normal;
|
|
|
|
font-weight: bold;
|
2017-04-13 00:21:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.markers_container > .marker.authored {
|
|
|
|
font-style: oblique;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markers_container > .marker .content sup {
|
|
|
|
font-style: normal;
|
|
|
|
font-variant: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markers_container > .marker.rant .content {
|
|
|
|
font-variant: small-caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markers_container > .marker .progress {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 0px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markers_container > .marker .timecode {
|
|
|
|
font-size: 9px;
|
|
|
|
font-style: normal;
|
|
|
|
padding-right: 8px;
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markers_container > .marker .content .categories {
|
|
|
|
display: inline-flex;
|
|
|
|
margin: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markers_container > .marker .content .categories .category {
|
|
|
|
border: 1px solid;
|
|
|
|
border-radius: 50%;
|
|
|
|
height: 5px;
|
|
|
|
margin-left: 2px;
|
|
|
|
width: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* CUSTOM PAGE STYLE */
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: #000;
|
|
|
|
font-family: sans-serif;
|
|
|
|
color: white;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|