2017-11-11 00:34:47 +00:00
|
|
|
/* Index */
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraQueryContainer {
|
2017-12-10 17:05:46 +00:00
|
|
|
max-width: 1024px;
|
2017-11-11 00:34:47 +00:00
|
|
|
margin: 15px auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: horizontal;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraQueryContainer label {
|
2017-11-11 00:34:47 +00:00
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraQueryContainer .inputContainer {
|
2017-11-11 00:34:47 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraQueryContainer #query {
|
2017-11-11 00:34:47 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraQueryContainer .inputContainer .spinner {
|
2017-11-11 00:34:47 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
right: 5px;
|
|
|
|
color: black;
|
|
|
|
height: 100%;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraQueryContainer .inputContainer .spinner.show {
|
2017-11-11 00:34:47 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
#cineraResults,
|
2017-11-11 00:34:47 +00:00
|
|
|
#cineraIndex {
|
|
|
|
margin: 0 auto;
|
2018-01-12 23:26:07 +00:00
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
|
2018-01-21 18:59:09 +00:00
|
|
|
#cineraIndex #cineraIndexSort {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 5px;
|
|
|
|
cursor: pointer;
|
2018-01-21 19:30:54 +00:00
|
|
|
user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
2018-01-21 18:59:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#cineraIndex #cineraIndexEntries {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-01-12 23:26:07 +00:00
|
|
|
#cineraResults .dayContainer {
|
|
|
|
display: flex;
|
2017-11-11 00:34:47 +00:00
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
#cineraResults .dayContainer .dayName {
|
2018-01-12 23:26:07 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
flex-shrink: 0;
|
2017-11-11 00:34:47 +00:00
|
|
|
font-size: 12px;
|
|
|
|
line-height: 16px;
|
|
|
|
padding: 5px;
|
2018-01-12 23:26:07 +00:00
|
|
|
vertical-align: top;
|
|
|
|
width: 200px;
|
2017-11-11 00:34:47 +00:00
|
|
|
}
|
|
|
|
|
2018-01-21 18:59:09 +00:00
|
|
|
#cineraIndexEntries div a {
|
2017-11-11 00:34:47 +00:00
|
|
|
display: block;
|
|
|
|
padding: 5px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2018-02-12 21:54:28 +00:00
|
|
|
#cineraIndexEntries div a::before {
|
2018-02-12 22:39:27 +00:00
|
|
|
content: "✓";
|
2018-02-12 21:54:28 +00:00
|
|
|
margin: 0 4px;
|
|
|
|
}
|
|
|
|
|
2018-01-12 23:26:07 +00:00
|
|
|
#cineraResults .dayContainer .markerList {
|
2017-11-11 00:34:47 +00:00
|
|
|
box-sizing: border-box;
|
2018-01-12 23:26:07 +00:00
|
|
|
display: block;
|
|
|
|
flex-grow: 1;
|
|
|
|
max-width: 600px;
|
2017-11-11 00:34:47 +00:00
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
2018-01-12 23:26:07 +00:00
|
|
|
#cineraResults .dayContainer .markerList > .marker {
|
2017-11-11 00:34:47 +00:00
|
|
|
border-top: 1px solid;
|
2018-01-12 23:26:07 +00:00
|
|
|
cursor: pointer;
|
2017-11-11 00:34:47 +00:00
|
|
|
display: block;
|
2018-01-12 23:26:07 +00:00
|
|
|
padding: 10px 5px;
|
2017-11-11 00:34:47 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2018-01-12 23:26:07 +00:00
|
|
|
#cineraResults .dayContainer .markerList > .marker:first-child {
|
2017-11-11 00:34:47 +00:00
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
#cineraResultsSummary {
|
2017-11-11 00:34:47 +00:00
|
|
|
margin: 10px 0;
|
2018-01-12 23:26:07 +00:00
|
|
|
text-align: center;
|
2017-11-11 00:34:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Player */
|
|
|
|
|
2017-04-13 00:21:04 +00:00
|
|
|
/* Structure */
|
2017-03-10 14:19:25 +00:00
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus,
|
|
|
|
.cineraMenus > .menu > .refs .ref,
|
|
|
|
.cineraMenus > .menu > .credits_container .credit {
|
2017-04-23 02:47:42 +00:00
|
|
|
border-bottom: 1px solid;
|
2017-05-26 23:11:53 +00:00
|
|
|
display: flex;
|
|
|
|
text-decoration: none;
|
2017-03-10 14:19:25 +00:00
|
|
|
}
|
|
|
|
|
2018-01-17 20:15:00 +00:00
|
|
|
.cineraMenus > *:not(.views),
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref,
|
2018-01-17 20:15:00 +00:00
|
|
|
.cineraMenus > .menu > .view,
|
|
|
|
.cineraMenus > .menu > .views_container .view,
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .credits_container .credit .person {
|
2017-03-10 14:19:25 +00:00
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus .episode_name {
|
2017-06-03 01:32:18 +00:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > #focus-warn {
|
2018-01-17 20:15:00 +00:00
|
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
|
|
border-radius: 16px;
|
2017-06-03 01:32:18 +00:00
|
|
|
color: #F00;
|
|
|
|
flex: 1;
|
2018-01-17 20:15:00 +00:00
|
|
|
margin: 0 auto 0 50%;
|
|
|
|
display: none;
|
|
|
|
z-index: 16;
|
|
|
|
position: absolute;
|
2017-03-10 14:19:25 +00:00
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu {
|
2017-03-10 14:19:25 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu .mouse_catcher {
|
2017-03-10 14:19:25 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu.filter.responsible,
|
|
|
|
.cineraMenus .filter_content.responsible,
|
2017-12-29 16:00:44 +00:00
|
|
|
.cineraMenus .filter_content.responsible .cineraText,
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_mode.responsible {
|
2017-05-19 22:29:35 +00:00
|
|
|
animation-duration: 8s;
|
|
|
|
animation-timing-function: ease-out;
|
|
|
|
animation-iteration-count: 1;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus .help .help_container .help_key {
|
2017-05-31 00:21:21 +00:00
|
|
|
font-family: Inconsolata;
|
|
|
|
font-size: 16px;
|
|
|
|
border: 1px solid;
|
|
|
|
display: inline-block;
|
|
|
|
background-color: #111; /* Per project */
|
|
|
|
border-radius: 4px;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
padding: 4px;
|
|
|
|
line-height: 16px;
|
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus .help .help_container .help_key.unavailable,
|
|
|
|
.cineraMenus .help .help_container .help_text.unavailable,
|
|
|
|
.cineraMenus .help .help_container h2 .unavailable {
|
2017-06-03 01:32:18 +00:00
|
|
|
opacity: 0.32;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus .help .help_container .key_block {
|
2017-05-31 00:21:21 +00:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
flex-direction: row;
|
2017-06-03 01:32:18 +00:00
|
|
|
margin: 8px;
|
2017-05-31 00:21:21 +00:00
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus .help .help_container .help_text {
|
2017-05-31 00:21:21 +00:00
|
|
|
margin: 0 8px 0 2px;
|
|
|
|
}
|
|
|
|
|
2017-06-03 01:32:18 +00:00
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus .help .help_container h1 {
|
2017-05-31 00:21:21 +00:00
|
|
|
display: inline;
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus .help .help_container h1:after {
|
2017-05-31 00:21:21 +00:00
|
|
|
content: "\a";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus .help .help_container h2 {
|
2017-05-31 00:21:21 +00:00
|
|
|
font-size: 16px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus .help .help_container .help_paragraph {
|
2017-05-31 00:21:21 +00:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .help {
|
2018-01-17 20:15:00 +00:00
|
|
|
cursor: pointer;
|
2017-05-31 00:21:21 +00:00
|
|
|
border: 1px solid;
|
|
|
|
border-radius: 4px;
|
|
|
|
height: 6px;
|
|
|
|
padding: 4px;
|
|
|
|
width: 6px;
|
|
|
|
margin: 2px;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 6px;
|
|
|
|
text-align: center;
|
2017-12-10 17:15:37 +00:00
|
|
|
z-index: 64;
|
2017-05-31 00:21:21 +00:00
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus .help .help_container .help_grid {
|
2017-05-31 00:21:21 +00:00
|
|
|
display: inline-flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus .help .help_container {
|
2017-05-31 00:21:21 +00:00
|
|
|
background-color: black; /* Per project */
|
|
|
|
color: #EEE; /* Per project */
|
|
|
|
display: none;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 12px;
|
|
|
|
opacity: 0.9;
|
|
|
|
padding: 8px;
|
|
|
|
position: fixed;
|
|
|
|
right: 612px;
|
|
|
|
top: 42px;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus .help .help_container.visible {
|
2017-05-31 00:21:21 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu .refs,
|
|
|
|
.cineraMenus > .menu .filter_container,
|
2018-01-17 20:15:00 +00:00
|
|
|
.cineraMenus > .menu .views_container,
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu .credits_container{
|
2017-05-15 01:11:11 +00:00
|
|
|
border: 1px solid;
|
|
|
|
border-top: none;
|
|
|
|
display: none;
|
|
|
|
/* TODO(matt): Set the height to the player's height */
|
|
|
|
max-height: 512px;
|
|
|
|
overflow-y: auto;
|
2017-03-10 14:19:25 +00:00
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
2017-05-15 01:11:11 +00:00
|
|
|
top: 100%;
|
2017-03-10 14:19:25 +00:00
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2018-01-15 00:03:11 +00:00
|
|
|
.cineraMenus > .menu .refs {
|
2017-05-25 20:28:52 +00:00
|
|
|
width: 350px;
|
|
|
|
}
|
|
|
|
|
2018-01-15 00:03:11 +00:00
|
|
|
.cineraMenus > .menu .filter_container {
|
|
|
|
min-width: 350px;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu .credits_container {
|
2017-05-25 20:28:52 +00:00
|
|
|
min-width: 240px;
|
|
|
|
}
|
|
|
|
|
2017-05-30 00:07:13 +00:00
|
|
|
/*.title > .menu:hover .refs,*/
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu.quotes .refs.visible,
|
|
|
|
.cineraMenus > .menu.references .refs.visible,
|
2017-05-30 00:07:13 +00:00
|
|
|
/*.title > .menu:hover .filter_container,*/
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu.filter .filter_container.visible,
|
|
|
|
.cineraMenus > .menu.credits .credits_container.visible {
|
2017-05-30 00:07:13 +00:00
|
|
|
/*.title > .menu:hover .credits_container {*/
|
2017-03-10 14:19:25 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref {
|
2017-05-25 20:28:52 +00:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2018-01-17 20:15:00 +00:00
|
|
|
.cineraMenus > .menu > .view,
|
|
|
|
.cineraMenus > .menu > .views_container .view {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .credits_container .credit {
|
2017-08-18 22:46:58 +00:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .credits_container .credit .person {
|
2017-08-18 22:46:58 +00:00
|
|
|
flex-grow: 1;
|
2017-05-25 20:28:52 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .credits_container .credit .support {
|
2017-05-26 23:11:53 +00:00
|
|
|
padding: 16px;
|
2017-05-25 20:28:52 +00:00
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .credits_container .credit .support .support_icon {
|
2017-11-11 00:34:47 +00:00
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref:last-child,
|
|
|
|
.cineraMenus > .menu > .credits_container .credit:last-child {
|
2017-03-10 14:19:25 +00:00
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref .timecode,
|
|
|
|
.cineraMenus > .menu > .filter_container .filter_mode {
|
2017-05-26 23:11:53 +00:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref .timecode {
|
2017-05-15 01:11:11 +00:00
|
|
|
cursor: pointer;
|
2017-03-10 14:19:25 +00:00
|
|
|
display: inline-block;
|
2017-03-15 02:10:11 +00:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref .timecode:hover {
|
2017-05-15 01:11:11 +00:00
|
|
|
/* TODO(matt): background-image "play" symbol, right aligned */
|
2017-04-23 02:47:42 +00:00
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref .ref_content,
|
|
|
|
.cineraMenus > .menu > .filter_content {
|
2017-04-23 02:47:42 +00:00
|
|
|
margin-bottom: 8px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref .source,
|
|
|
|
.cineraMenus > .menu > .refs .ref .quote_byline,
|
|
|
|
.cineraMenus > .menu > .filter_container .filter_title,
|
|
|
|
.cineraMenus > .menu > .credits_container .credit .role {
|
2017-04-23 02:47:42 +00:00
|
|
|
font-size: 10px;
|
2017-05-26 23:11:53 +00:00
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref .source,
|
|
|
|
.cineraMenus > .menu > .refs .ref .quote_byline,
|
|
|
|
.cineraMenus > .menu > .credits_container .credit .role {
|
2017-04-23 02:47:42 +00:00
|
|
|
line-height: 8px;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref .quote_byline,
|
|
|
|
.cineraMenus > .menu > .refs .ref .ref_indices {
|
2017-05-26 23:11:53 +00:00
|
|
|
width: 100%;
|
2017-04-23 02:47:42 +00:00
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref .quote_byline {
|
2017-04-23 02:47:42 +00:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref .ref_indices {
|
2017-03-15 02:10:11 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref .ref_indices .timecode:first-child::before {
|
2017-03-15 02:10:11 +00:00
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .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-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref .timecode .ref_index {
|
2017-03-15 02:10:11 +00:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2017-04-13 00:21:04 +00:00
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_mode {
|
2017-05-15 01:11:11 +00:00
|
|
|
cursor: pointer;
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_mode.exclusive:after {
|
2017-05-15 01:11:11 +00:00
|
|
|
content: "exclusive";
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_mode.inclusive:after {
|
2017-05-15 01:11:11 +00:00
|
|
|
content: "inclusive";
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_title {
|
2017-05-15 01:11:11 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filters {
|
2017-05-15 01:11:11 +00:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filters > * {
|
2017-05-15 01:11:11 +00:00
|
|
|
width: 50%;
|
2018-01-15 00:03:11 +00:00
|
|
|
flex-grow: 1;
|
2017-05-15 01:11:11 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 00:03:11 +00:00
|
|
|
.cineraDefaultMediumIndicator {
|
|
|
|
color: #FEF697;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cineraMenus > .menu > .filter_container .filter_content,
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .cineraContent .cineraCategories {
|
2017-05-15 01:11:11 +00:00
|
|
|
cursor: pointer;
|
2018-02-23 23:36:42 +00:00
|
|
|
display: inline-flex;
|
2018-01-15 00:03:11 +00:00
|
|
|
align-items: center;
|
2017-05-15 01:11:11 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 00:03:11 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_content .icon,
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .cineraContent .cineraCategories .categoryMedium {
|
2018-01-15 00:03:11 +00:00
|
|
|
font-style: normal;
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .cineraContent .cineraCategories .categoryMedium + .categoryMedium {
|
2018-01-15 00:03:11 +00:00
|
|
|
margin-left: 2px;
|
2017-05-15 01:11:11 +00:00
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_content.off .icon {
|
2017-05-15 01:11:11 +00:00
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2018-01-15 00:03:11 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_content.rant .icon,
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .cineraContent .cineraCategories .categoryMedium.rant {
|
2018-01-15 00:03:11 +00:00
|
|
|
color: #BA0001;
|
2017-05-15 01:11:11 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 00:03:11 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_media .filter_content.off .icon,
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .cineraContent .cineraCategories .categoryMedium.off {
|
2017-05-15 01:11:11 +00:00
|
|
|
opacity: 0.32;
|
|
|
|
}
|
|
|
|
|
2017-12-29 16:00:44 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_content.rant .cineraText,
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker.rant .cineraContent,
|
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker.off_rant .cineraContent {
|
2017-05-15 01:11:11 +00:00
|
|
|
font-variant: small-caps;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraPlayerContainer {
|
2017-04-13 00:21:04 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraPlayerContainer .video_container {
|
2017-04-13 00:21:04 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraPlayerContainer .markers_container {
|
2018-01-15 21:52:24 +00:00
|
|
|
flex-shrink: 0;
|
2017-04-13 00:21:04 +00:00
|
|
|
overflow-y: scroll;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .episodeMarker {
|
|
|
|
text-decoration: none;
|
|
|
|
display: flex;
|
|
|
|
font-size: 11px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cineraPlayerContainer .markers_container > a.episodeMarker {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cineraPlayerContainer .markers_container > div.episodeMarker {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cineraPlayerContainer .markers_container > .episodeMarker div {
|
|
|
|
margin: auto;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cineraPlayerContainer .markers_container > .episodeMarker div:not(:nth-of-type(2)) {
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cineraPlayerContainer .markers_container > .episodeMarker div:nth-of-type(2) {
|
|
|
|
padding: 0 5px;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cineraPlayerContainer .markers_container > .episodeMarker.first,
|
|
|
|
.cineraPlayerContainer .markers_container > .episodeMarker.prev {
|
|
|
|
border-bottom: 4px double;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cineraPlayerContainer .markers_container > .markers .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;
|
2017-05-19 22:29:35 +00:00
|
|
|
max-height: 320px;
|
|
|
|
transition: max-height .32s;
|
|
|
|
}
|
|
|
|
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker:last-of-type {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cineraPlayerContainer .markers_container > .episodeMarker.next,
|
|
|
|
.cineraPlayerContainer .markers_container > .episodeMarker.last {
|
|
|
|
border-top: 4px double;
|
2017-04-13 00:21:04 +00:00
|
|
|
}
|
|
|
|
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .episodeMarker,
|
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .cineraContent {
|
2017-04-13 00:21:04 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 5px;
|
|
|
|
width: 320px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .cineraContent {
|
2018-02-28 01:04:06 +00:00
|
|
|
display: inline-block;
|
2018-02-21 21:50:23 +00:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker.skip {
|
|
|
|
max-height: 0;
|
|
|
|
transition: max-height .32s;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker.authored .cineraContent .author,
|
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker.off_authored .cineraContent .author {
|
2017-04-13 00:21:04 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .refs .ref .ref_title,
|
2017-12-29 16:00:44 +00:00
|
|
|
.cineraMenus .filter_content.authored .cineraText,
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker.authored,
|
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker.off_authored {
|
2018-01-15 00:03:11 +00:00
|
|
|
font-style: oblique !important;
|
2017-06-03 03:47:07 +00:00
|
|
|
}
|
|
|
|
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .cineraContent sup {
|
2017-04-13 00:21:04 +00:00
|
|
|
font-style: normal;
|
|
|
|
font-variant: normal;
|
|
|
|
}
|
|
|
|
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .progress {
|
2017-04-13 00:21:04 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 0px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .timecode {
|
2017-04-13 00:21:04 +00:00
|
|
|
font-size: 9px;
|
|
|
|
font-style: normal;
|
|
|
|
padding-right: 8px;
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
}
|
|
|
|
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .cineraContent .cineraCategories {
|
2018-02-28 01:04:06 +00:00
|
|
|
float: right;
|
|
|
|
min-height: 1em;
|
2017-04-13 00:21:04 +00:00
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_content {
|
2017-05-15 01:11:11 +00:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_content .category,
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .cineraContent .cineraCategories .category {
|
2017-04-13 00:21:04 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
height: 5px;
|
|
|
|
width: 5px;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_content .category.off,
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .cineraContent .cineraCategories .category.off {
|
2017-05-15 01:11:11 +00:00
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2018-02-21 21:50:23 +00:00
|
|
|
.cineraPlayerContainer .markers_container > .markers .marker .cineraContent .cineraCategories .category {
|
2017-05-15 01:11:11 +00:00
|
|
|
margin-left: 2px;
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:17:19 +00:00
|
|
|
.cineraMenus > .menu > .filter_container .filter_content .icon {
|
2017-05-15 01:11:11 +00:00
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
2017-04-13 00:21:04 +00:00
|
|
|
/* CUSTOM PAGE STYLE */
|
|
|
|
|
2017-08-18 22:46:58 +00:00
|
|
|
/*
|
2017-04-13 00:21:04 +00:00
|
|
|
body {
|
|
|
|
background-color: #000;
|
|
|
|
font-family: sans-serif;
|
|
|
|
color: white;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2017-08-18 22:46:58 +00:00
|
|
|
*/
|
2017-05-15 01:11:11 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Open menu: ▾ ▾
|
|
|
|
Open link in new tab: ⤻ or &10559; or &8599; or ⭷
|
|
|
|
Play from timecode: ⏵ (or, if ↓ ▸)
|
|
|
|
Playable from timecode: ▹
|
|
|
|
*/
|