annotate core.css @ 1946:1d08f8aee098

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