player/css/styles.css
author veltr
Fri, 07 Jun 2013 16:17:31 +0200
changeset 15 01ac2cd2756c
parent 9 2e1053dff5f2
child 18 b8a45e2fd6fd
permissions -rwxr-xr-x
Small fixes in Player

/* Resetting the usual suspects */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

ul, li {
    list-style: none;
}

input::-moz-focus-inner /*Remove button padding in FF*/
{ 
    border: 0;
    padding: 0;
}

table {
    border-collapse: separate; border-spacing: 0;
}

th, td {
    vertical-align: top;
}

img a {
    border: none;
}

html {
    overflow: hidden;
}

/* Fonts */

@font-face {
    font-family: 'Futura-Medium';
    src: url('../fonts/Futura-Medium.woff') format('woff'),
         url('../fonts/Futura-Medium.ttf') format('truetype'),
         url('../fonts/Futura-Medium.svg#Futura-Medium') format('svg');
}

@font-face {
    font-family: 'Futura-CondensedExtraBold';
    src: url('../fonts/Futura-CondensedExtraBold.woff') format('woff'),
         url('../fonts/Futura-CondensedExtraBold.ttf') format('truetype'),
         url('../fonts/Futura-CondensedExtraBold.svg#Futura-CondensedExtraBold') format('svg');
}
/* End of the reset part */

body {
    background: #000000; font-family: Helvetica, Arial, sans-serif;
}

/* Top Bar */

.top-bar {
    height: 40px;
}

/* Main Video Frame */

.main-video {
    height: 562px; position: relative;
}

.project-title {
    text-align: center; line-height: 40px; font-size: 17px; color: #b0b0b0;
    font-family: 'Futura-Medium';
}

.tags {
    position: absolute; top: 0; left: 0; width: 140px; z-index: 2; font-size: 12px; cursor: pointer;
}

.tags-title {
    line-height: 40px; padding: 0 15px; font-size: 11px; color: #B8155F;
    font-family: 'Futura-Medium'; text-transform: uppercase;
}

.tags:hover .tags-title {
    background: #404040; color: #ffffff;
}

.tags-list {
    background: #303030;
    padding: 10px 0; display: none;
}

.tag {
    color: #cccccc; padding: 5px 15px;
}

.tag:hover {
    color: #ffffff; background: #202020;
}

.tag.found {
    color: #ffffff;
}

/* Annotation colors */

.video {
    color: #be4477;
}

.audio {
    color:#63be6c;
}

.slideshow {
    color: #f69058;
}

.text {
    color:#5e90cb;
}

.quote {
    color:#00aeb5;
}

.link {
    color:#8985bb;
}


/* Pictograms on the left */

.pictolist {
    position: absolute;
    left: 14px; bottom: 24px;
}

.pictolist li {
    line-height: 38px; opacity: 0; display: none; height: 0;
    padding: 6px; width: 38px; overflow: hidden;
    -webkit-transition: width 0.8s;
    transition: width 0.8s;
}

.pictolist li.hover {
    width: 400px;
}

.picto {
    float: left; padding: 7px; background:black;
    border-radius: 19px; cursor: pointer;
    -webkit-transition: background 0.8s;
    transition: background 0.8s;
}

.picto-title {
    margin-left: 8px; font-size: 12px; text-transform: uppercase;
    padding: 4px 6px; background: rgba(0, 0, 0, .7);
    font-family: 'Futura-CondensedExtraBold';
}

.found .picto-title {
    background: rgba(255, 255, 255, .7);
}

.picto a {
    background: url(../img/sprites.png); display: block; width: 24px; height: 24px;
}

.video.hover .picto ,
.video.current .picto {
    background: #be4477;
}

.video.hover .picto a ,
.video.current .picto a {
    background-position: -24px 0;
}

.audio .picto a {
    background-position: 0 -24px;
}

.audio.hover .picto,
.audio.current .picto {
    background: #63be6c;
}

.audio.hover .picto a ,
.audio.current .picto a {
    background-position: -24px -24px;
}

.slideshow .picto a {
    background-position: 0 -48px;
}

.slideshow.hover .picto ,
.slideshow.current .picto {
    background: #f69058;
}

.slideshow.hover .picto a ,
.slideshow.current .picto a {
    background-position: -24px -48px;
}

.text .picto a {
    background-position: 0 -72px;
}

.text.hover .picto ,
.text.current .picto {
    background: #5e90cb;
}

.text.hover .picto a ,
.text.current .picto a {
    background-position: -24px -72px;
}

.quote .picto a {
    background-position: 0 -96px;
}

.quote.hover .picto ,
.quote.current .picto {
    background: #00aeb5;
}

.quote.hover .picto a ,
.quote.current .picto a {
    background-position: -24px -96px;
}

.link .picto a {
    background-position: 0 -120px;
}

.link.hover .picto ,
.link.current .picto {
    background: #8985bb;
}

.link.hover .picto a ,
.link.current .picto a {
    background-position: -24px -120px;
}

.found .picto,
.current.found picto,
.hover.found .picto {
    background: #ffffff;
}

/* Annotations */

.annotation-templates {
    display: none;
}

.annotation {
    position: absolute;
}

.annotation-title {
    font-family: 'Futura-Medium'; text-align: center;
}

.close-annotation {
    float: right; margin: 10px 10px 0 0; width: 11px; height: 10px; background-image: url(../img/sprites.png);
}

.annotation {
    left: 45px; top: 800px; right: 35px;
    transition: top 0.8s; -webkit-transition: top 0.8s;
}

.annotation-main:after {
    content: "."; visibility: hidden; display: block; height: 0; line-height: 0; clear: both;
}

/* Narrow annotations */

.narrow-annotation {
    left: 210px; right: 200px;
}

/* White annotations */

.white-annotation {
    background: #ffffff; max-height: 522px; overflow: auto;
}

.white-annotation {
    color: #000000;
}

.white-annotation .close-annotation {
    background-position: -24px -160px;
}

.white-annotation .close-annotation:hover {
    background-position: -36px -160px;
}

.white-annotation .annotation-title {
    font-size: 23px; margin: 24px 0;
}

/* Black annotations */

.black-annotation .annotation-main {
    background: rgba(0,0,0,.7);
}

.black-annotation .annotation-title {
    height: 35px; line-height: 35px; color: #ffffff; font-size: 14px; background: #000000;
}

.black-annotation .close-annotation {
    background-position: -24px -170px;
}

.black-annotation .close-annotation:hover {
    background-position: -36px -170px;
}

.black-annotation p {
    margin: 10px 25px 10px 15px;
    font-size: 12px; color: #CCCCCC;
}

/* Text annotation */

.text-contents {
    font-family: Georgia, 'Times New Roman', serif;
    margin: 0 45px 35px; font-size: 15px;
    
}

.text-contents p, .text-contents ul, .text-contents ol {
/*    column-break-inside:avoid; -moz-column-break-inside:avoid; -webkit-column-break-inside:avoid; */
    margin-bottom: 10px;
}

.text-contents h2, .text-contents h3, .text-contents h4 {
/*    text-align: center; */
    font-family: 'Futura-Medium'; margin-bottom: 10px; line-height: 1.1em;
}

.text-contents img {
    float: left; margin: 0 5px 2px 0;
}
/*
.column-group {
    column-count: 2; column-gap: 60px;
    -moz-column-count: 2; -moz-column-gap: 60px;
    -webkit-column-count: 2; -webkit-column-gap: 60px;
}
*/
.text-contents h2 {
    font-size: 21px;
}

.text-contents h3 {
    font-size: 18px;
}

.text-contents h4 {
    font-size: 15px;
}

.text-contents b, .text-contents strong {
    font-weight: bold;
}

.text-contents em, .text-contents i {
    font-style: italic;
}

.text-contents a {
    color: #5E90CB;
}

.text-contents ul {
    list-style: disc; padding-left: 2em;
}

.text-contents ol {
    list-style: decimal; padding-left: 2em;
}

.text-contents li {
    list-style: inherit; margin: 2px 0;
}

/* Link annotation */

.link-contents {
    font-family: Georgia, 'Times New Roman', serif;
    margin: 40px 80px 80px;
}

.link-contents p {
    text-align: center; font-size: 23px; margin: 25px 0;
}

.link-contents a {
    color: #000000;
}

/* Audio annotation */

.audio-annotation .media-description {
    margin: 25px 0 0; font-size: 15px;
}

.audio-annotation .annotation-main {
    padding: 25px 0 15px;
}

.audio-annotation .media-frame {
    margin: 0 15px;
}

.audio-annotation p {
    margin: 10px 15px;
}

/* Video annotation */

.video-annotation .media-frame {
    float: left; width: 650px; max-height: 487px;
}

.video-annotation video {
    width: 650px; max-height: 487px;
}

.video-annotation .media-description {
    max-height: 487px; overflow: auto;
}

/* Slideshow annotation */

.slideshow-frame {
    float: left; width: 650px; height: 452px; position: relative; background: #000000;
}
.slideshow-image {
    max-width: 650px; max-height: 452px; margin: 0 auto; display: block;
}

.slideshow-play-pause {
    float: left; padding: 10px 15px 11px;
    background: #404040; cursor: pointer;
    -webkit-transition: background 0.8s;
    transition: background 0.8s;
}

.slideshow-play-pause a {
    background-image: url(../img/sprites.png); width: 14px; height: 14px;
    background-position: 0 -194px; display: block;
}

.slideshow-play-pause.pause a {
    background-position: -24px -194px;
}

.slideshow-play-pause:hover {
    background: #606060;
}

.slideshow-bottom {
    clear: both; height: 35px; background: #000000;
}

.slideshow-description {
    height: 452px; overflow: auto;
}

.slideshow-title {
    line-height: 35px; margin: 0 15px; font-family: 'Futura-Medium'; font-size: 13px; color: #cccccc; float: left;
}

.slideshow-arrow {
    position: absolute; top: 50%; margin-top: -22px; padding: 10px; cursor: pointer;
    -webkit-transition: background 0.8s;
    transition: background 0.8s;
}

.slideshow-arrow a {
    display: block; height: 24px; width: 14px; background-image: url(../img/sprites.png);
}

.slideshow-arrow:hover {
    background-color: rgba(255,255,255,.5);
}

.slideshow-previous {
    left: 0;
}

.slideshow-previous a {
    background-position: 0 -208px;
}

.slideshow-next {
    right: 0;
}

.slideshow-next a {
    background-position: -14px -208px;
}

/* Bottom bar */

.bottom-bar {
    padding-top: 20px;
}

.play-button {
    float: left; width: 14px; height: 14px;
    padding: 8px; border-radius: 15px;
    background: #555555; cursor: pointer;
    margin: 8px 0 0 15px;
    -webkit-transition: background 0.8s;
    transition: background 0.8s;
}

.play-button:hover {
    background: #909090;
}

.play-button a {
    background-image: url(../img/sprites.png); width: 14px; height: 14px; display: block;
    background-position: 0 -180px;
}

.play-button.pause a {
    background-position: -24px -180px;
}

.chapters-bar {
    margin: 0 20px 0 60px; height: 45px; position: relative; cursor: pointer;
    transition: opacity 0.8s;
}

.chapter {
    position: absolute; top: 0;
}

.chapter-block {
    width: 100%; height: 45px; background: #303030;
    margin: 0 -1px;
    border-style: none solid; border-width: 1px;
    border-color: #000000;
    -webkit-transition: background 0.8s, opacity 0.8s;
    transition: background 0.8s, opacity 0.8s;
}

.chapter.active .chapter-block {
    background: #404040;
}

.chapter.found .chapter-block {
    background: #ffffff;
}

.annotation-onscreen .chapter-block {
    opacity: .5;
}

.chapter-title {
    position: absolute; top: 53px; left: 50%; width: 300px; margin-left: -150px;
    font-size: 9px; text-transform: uppercase;
    text-align: center; color: #909090; opacity: 0;
    font-family: 'Futura-Medium';
    -webkit-transition: background 0.8s;
    transition: opacity 0.8s;
}

.chapter.active .chapter-title {
    opacity: 1;
}

.chip {
    position: absolute; top: 0; width: 1px;
}

.chip-circle {
    width: 11px; height: 11px; top: 17px; left: -5px; border-radius: 6px; position: absolute;
    -webkit-transition: background 0.8s, opacity 0.8s;
    transition: background 0.8s, opacity 0.8s;
}

.chip-pole {
    position: absolute; top: 0; left: 0; width: 0; height: 17px; border-left: 1px solid; display: none;
}

.chip.hover .chip-pole {
    display: block;
}

.chip-title {
    position: absolute; top: 1px; left: 3px; font-size: 9px; line-height: 13px; height: 13px;
    display: block; width: 0; overflow: hidden;
    -webkit-transition: width 0.8s;
    transition: width 0.8s;
}

.chip.hover .chip-title {
    width: 200px;
}

.chip.left .chip-title {
    left: auto; right: 3px; text-align: right;
}

.annotation-onscreen .chip {
    opacity: .3;
}

.chip.current,
.chip.hover {
    opacity: 1;
}

.video .chip-circle {
    background: #be4477; color: #be4477;
}

.audio .chip-circle {
    background: #63be6c; color: #63be6c;
}

.slideshow .chip-circle {
    background: #f69058; color: #f69058;
}

.text .chip-circle {
    background: #5e90cb; color: #5e90cb;
}

.quote .chip-circle {
    background: #00aeb5; color: #00aeb5;
}

.link .chip-circle {
    background: #8985bb; color: #8985bb;
}

.found .chip-circle {
    background: #ffffff;
    border: 2px solid; left: -6px; top: 16px; width: 9px; height: 9px;
}

.left-hiding-block, .right-hiding-block {
    position: absolute; width: 6px; height: 11px; top: 17px; background: #000000; 
}

.left-hiding-block {
    left: -6px;
}

.right-hiding-block {
    right: -6px;
}

.chapter-nav {
    position: relative;
}

.prev-chapter, .next-chapter {
    position: absolute; z-index: 4;
    width: 12px; height: 16px; margin: 8px 5px;
    background: url(../img/sprites.png); cursor: pointer;
}

.next-chapter {
    right: 0; background-position: -12px -144px;
}

.next-chapter:hover {
    background-position: -36px -144px;
}

.next-chapter.inactive {
    background-position: -12px -160px;
}

.prev-chapter {
    left: 0; background-position: 0 -144px;
}

.prev-chapter:hover {
    background-position: -24px -144px;
}

.prev-chapter.inactive {
    background-position: 0 -160px;
}

.progress-indicator {
    position: absolute; top: 0; width: 2px; height: 100%; background: #c0c0c0; /* margin-left: -1px; */
}

.progress-indicator:hover {
    background: #ffffff;
}

/* */