annotate core.css @ 894:1af8a548cab2

Started on playhead / scrubber bar. Now object in interfaceContext. Needs binding of setInterval.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Wed, 10 Jun 2015 16:12:46 +0100
parents c40ce9c67b6b
children ab79d76c6f85
rev   line source
n@893 1 /* structure.css
n@893 2 * Define the structure for classes and objects in HTML
n@893 3 */
n@893 4
n@893 5 div.title {
n@893 6 width: 100%;
n@893 7 height: 50px;
n@893 8 margin-bottom: 10px;
n@893 9 font-size: 2em;
n@893 10 }
n@893 11
n@893 12 div.indicator-box {
n@893 13 position: absolute;
n@893 14 left: 150px;
n@893 15 top: 10px;
n@893 16 width: 300px;
n@893 17 height: 60px;
n@893 18 padding: 20px;
n@893 19 border-radius: 10px;
n@893 20 background-color: rgb(100,200,200);
n@893 21 }
n@893 22
n@893 23 div.comment-div {
n@893 24 border:#444444;
n@893 25 border-style:solid;
n@893 26 border-width:1px;
n@893 27 width: 624px;
n@893 28 float: left;
n@893 29 margin: 5px;
n@893 30 height: 90px;
n@893 31 }
n@893 32
n@893 33 div.comment-div span {
n@893 34 margin-left: 15px;
n@893 35 }
n@893 36
n@893 37 div.popupHolder {
n@893 38 width: 500px;
n@893 39 height: 250px;
n@893 40 background-color: #fff;
n@893 41 border-radius: 10px;
n@893 42 box-shadow: 0px 0px 50px #000;
n@893 43 z-index: 2;
n@893 44 }
n@893 45
n@893 46 button.popupButton {
n@893 47 /* Button for popup window
n@893 48 */
n@893 49 width: 50px;
n@893 50 height: 25px;
n@893 51 position: absolute;
n@893 52 border-radius: 5px;
n@893 53 border: #444;
n@893 54 border-width: 1px;
n@893 55 border-style: solid;
n@893 56 background-color: #fff;
n@893 57 }
n@893 58
n@893 59 textarea.trackComment {
n@893 60 width: 618px;
n@893 61 margin-right:15px;
n@893 62 }
n@894 63
n@894 64 div.playhead {
n@894 65 width: 500px;
n@894 66 height: 50px;
n@894 67 background-color: #eee;
n@894 68 border-radius: 10px;
n@894 69 padding: 10px;
n@894 70 }
n@894 71
n@894 72 div.playhead-scrub-track {
n@894 73 width: 100%;
n@894 74 height: 10px;
n@894 75 border-style: solid;
n@894 76 border-width: 1px;
n@894 77 }
n@894 78
n@894 79 div#playhead-scrubber {
n@894 80 width: 10px;
n@894 81 height: 10px;
n@894 82 position: relative;
n@894 83 background-color: #000;
n@894 84 }