annotate core.css @ 1482:81e2a7162d18

Addition of HULTI-GEN interfaces to WAC paper.
author Dave <djmoffat@users.noreply.github.com>
date Wed, 23 Sep 2015 09:13:38 +0100
parents 8be2d08fbe15
children 235594325b84
rev   line source
b@1481 1 /* structure.css
b@1481 2 * Define the structure for classes and objects in HTML
b@1481 3 */
b@1481 4
b@1481 5 div.title {
b@1481 6 width: 100%;
b@1481 7 height: 50px;
b@1481 8 margin-bottom: 10px;
b@1481 9 font-size: 2em;
b@1481 10 }
b@1481 11
b@1481 12 div.indicator-box {
b@1481 13 position: absolute;
b@1481 14 left: 150px;
b@1481 15 top: 10px;
b@1481 16 width: 300px;
b@1481 17 height: 60px;
b@1481 18 padding: 20px;
b@1481 19 border-radius: 10px;
b@1481 20 background-color: rgb(100,200,200);
b@1481 21 }
b@1481 22
b@1481 23 div.comment-div {
b@1481 24 border:#444444;
b@1481 25 border-style:solid;
b@1481 26 border-width:1px;
b@1481 27 max-width: 600px;
b@1481 28 min-width: 400px;
b@1481 29 float: left;
b@1481 30 margin: 5px;
b@1481 31 height: 90px;
b@1481 32 }
b@1481 33
b@1481 34 div.comment-div span {
b@1481 35 margin-left: 15px;
b@1481 36 }
b@1481 37
b@1481 38 div.popupHolder {
b@1481 39 width: 500px;
b@1481 40 min-height: 250px;
b@1481 41 max-height: 400px;
b@1481 42 background-color: #fff;
b@1481 43 border-radius: 10px;
b@1481 44 box-shadow: 0px 0px 50px #000;
b@1481 45 z-index: 2;
b@1481 46 }
b@1481 47
b@1481 48 button.popupButton {
b@1481 49 /* Button for popup window
b@1481 50 */
b@1481 51 width: 50px;
b@1481 52 height: 25px;
b@1481 53 position: relative;
b@1481 54 border-radius: 5px;
b@1481 55 border: #444;
b@1481 56 border-width: 1px;
b@1481 57 border-style: solid;
b@1481 58 background-color: #fff;
b@1481 59 }
b@1481 60
b@1481 61 textarea.trackComment {
b@1481 62 max-width: 594px;
b@1481 63 min-width: 350px;
b@1481 64 margin-right:15px;
b@1481 65 max-height: 60px;
b@1481 66 }
b@1481 67
b@1481 68 div.playhead {
b@1481 69 width: 500px;
b@1481 70 height: 50px;
b@1481 71 background-color: #eee;
b@1481 72 border-radius: 10px;
b@1481 73 padding: 10px;
b@1481 74 }
b@1481 75
b@1481 76 div.playhead-scrub-track {
b@1481 77 width: 100%;
b@1481 78 height: 10px;
b@1481 79 border-style: solid;
b@1481 80 border-width: 1px;
b@1481 81 }
b@1481 82
b@1481 83 div#playhead-scrubber {
b@1481 84 width: 10px;
b@1481 85 height: 10px;
b@1481 86 position: relative;
b@1481 87 background-color: #000;
b@1481 88 }