annotate core.css @ 1478:82f43919f385

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