annotate core.css @ 1037:309a63c5d360

Merge into dev_main
author Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk>
date Thu, 18 Jun 2015 16:26:45 +0100
parents a049c6cf7eb3
children 2b8c36924bfd
rev   line source
n@920 1 /* structure.css
n@920 2 * Define the structure for classes and objects in HTML
n@920 3 */
n@920 4
n@920 5 div.title {
n@920 6 width: 100%;
n@920 7 height: 50px;
n@920 8 margin-bottom: 10px;
n@920 9 font-size: 2em;
n@920 10 }
n@920 11
n@920 12 div.indicator-box {
n@920 13 position: absolute;
n@920 14 left: 150px;
n@920 15 top: 10px;
n@920 16 width: 300px;
n@920 17 height: 60px;
n@920 18 padding: 20px;
n@920 19 border-radius: 10px;
n@920 20 background-color: rgb(100,200,200);
n@920 21 }
n@920 22
n@920 23 div.comment-div {
n@920 24 border:#444444;
n@920 25 border-style:solid;
n@920 26 border-width:1px;
n@920 27 width: 624px;
n@920 28 float: left;
n@920 29 margin: 5px;
n@1026 30 height: 90px;
n@920 31 }
n@920 32
n@920 33 div.comment-div span {
n@920 34 margin-left: 15px;
n@920 35 }
n@920 36
n@920 37 div.popupHolder {
n@920 38 width: 500px;
n@920 39 height: 250px;
n@920 40 background-color: #fff;
n@920 41 border-radius: 10px;
n@920 42 box-shadow: 0px 0px 50px #000;
n@920 43 z-index: 2;
n@920 44 }
n@920 45
n@920 46 button.popupButton {
n@920 47 /* Button for popup window
n@920 48 */
n@920 49 width: 50px;
n@920 50 height: 25px;
n@920 51 position: absolute;
n@920 52 border-radius: 5px;
n@920 53 border: #444;
n@920 54 border-width: 1px;
n@920 55 border-style: solid;
n@920 56 background-color: #fff;
n@920 57 }
n@920 58
n@920 59 textarea.trackComment {
n@920 60 width: 618px;
n@920 61 margin-right:15px;
n@920 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 }