annotate core.css @ 1801:7a94256ad690

Scripts: evaluation statistics: show average duration per song in order of number of fragments and average total duration; count empty comments; fragments per song; distinguish between same audioholder ids with different number of audioelements.
author Brecht De Man <b.deman@qmul.ac.uk>
date Wed, 15 Jul 2015 15:52:56 +0100
parents 78823dba1fe0
children 2b8c36924bfd
rev   line source
nickjillings@1590 1 /* structure.css
nickjillings@1590 2 * Define the structure for classes and objects in HTML
nickjillings@1590 3 */
nickjillings@1590 4
nickjillings@1590 5 div.title {
nickjillings@1590 6 width: 100%;
nickjillings@1590 7 height: 50px;
nickjillings@1590 8 margin-bottom: 10px;
nickjillings@1590 9 font-size: 2em;
nickjillings@1590 10 }
nickjillings@1590 11
nickjillings@1590 12 div.indicator-box {
nickjillings@1590 13 position: absolute;
nickjillings@1590 14 left: 150px;
nickjillings@1590 15 top: 10px;
nickjillings@1590 16 width: 300px;
nickjillings@1590 17 height: 60px;
nickjillings@1590 18 padding: 20px;
nickjillings@1590 19 border-radius: 10px;
nickjillings@1590 20 background-color: rgb(100,200,200);
nickjillings@1590 21 }
nickjillings@1590 22
nickjillings@1590 23 div.comment-div {
nickjillings@1590 24 border:#444444;
nickjillings@1590 25 border-style:solid;
nickjillings@1590 26 border-width:1px;
nickjillings@1590 27 width: 624px;
nickjillings@1590 28 float: left;
nickjillings@1590 29 margin: 5px;
nickjillings@1765 30 height: 90px;
nickjillings@1590 31 }
nickjillings@1590 32
nickjillings@1590 33 div.comment-div span {
nickjillings@1590 34 margin-left: 15px;
nickjillings@1590 35 }
nickjillings@1590 36
nickjillings@1590 37 div.popupHolder {
nickjillings@1590 38 width: 500px;
nickjillings@1590 39 height: 250px;
nickjillings@1590 40 background-color: #fff;
nickjillings@1590 41 border-radius: 10px;
nickjillings@1590 42 box-shadow: 0px 0px 50px #000;
nickjillings@1590 43 z-index: 2;
nickjillings@1590 44 }
nickjillings@1590 45
nickjillings@1590 46 button.popupButton {
nickjillings@1590 47 /* Button for popup window
nickjillings@1590 48 */
nickjillings@1590 49 width: 50px;
nickjillings@1590 50 height: 25px;
nickjillings@1590 51 position: absolute;
nickjillings@1590 52 border-radius: 5px;
nickjillings@1590 53 border: #444;
nickjillings@1590 54 border-width: 1px;
nickjillings@1590 55 border-style: solid;
nickjillings@1590 56 background-color: #fff;
nickjillings@1590 57 }
nickjillings@1590 58
nickjillings@1590 59 textarea.trackComment {
nickjillings@1590 60 width: 618px;
nickjillings@1590 61 margin-right:15px;
nickjillings@1590 62 }
nickjillings@1564 63
nickjillings@1564 64 div.playhead {
nickjillings@1564 65 width: 500px;
nickjillings@1564 66 height: 50px;
nickjillings@1564 67 background-color: #eee;
nickjillings@1564 68 border-radius: 10px;
nickjillings@1564 69 padding: 10px;
nickjillings@1564 70 }
nickjillings@1564 71
nickjillings@1564 72 div.playhead-scrub-track {
nickjillings@1564 73 width: 100%;
nickjillings@1564 74 height: 10px;
nickjillings@1564 75 border-style: solid;
nickjillings@1564 76 border-width: 1px;
nickjillings@1564 77 }
nickjillings@1564 78
nickjillings@1564 79 div#playhead-scrubber {
nickjillings@1564 80 width: 10px;
nickjillings@1564 81 height: 10px;
nickjillings@1564 82 position: relative;
nickjillings@1564 83 background-color: #000;
nickjillings@1564 84 }