n@1106: /* structure.css n@1106: * Define the structure for classes and objects in HTML n@1106: */ n@1106: n@1106: div.title { n@1106: width: 100%; n@1106: height: 50px; n@1106: margin-bottom: 10px; n@1106: font-size: 2em; n@1106: } n@1106: n@1106: div.indicator-box { n@1106: position: absolute; n@1106: left: 150px; n@1106: top: 10px; n@1106: width: 300px; n@1106: height: 60px; n@1106: padding: 20px; n@1106: border-radius: 10px; n@1106: background-color: rgb(100,200,200); n@1106: } n@1106: n@1106: div.comment-div { n@1106: border:1px solid #444444; n@1106: max-width: 600px; n@1106: min-width: 400px; n@1106: float: left; n@1106: margin: 5px 10px 5px 5px; n@1106: height: 90px; n@1106: border-radius: 10px; n@1106: } n@1106: n@1106: div.comment-div span { n@1106: margin-left: 15px; n@1106: } n@1106: n@1106: div.popupHolder { n@1106: width: 500px; n@1106: min-height: 250px; n@1106: max-height: 400px; n@1106: background-color: #fff; n@1106: border-radius: 10px; n@1106: box-shadow: 0px 0px 50px #000; n@1106: z-index: 2; n@1106: position: absolute; n@1106: } n@1106: n@1106: div#popupContent { n@1106: margin-top: 20px; n@1106: margin-bottom: 5px; n@1106: } n@1106: n@1106: div#popupTitle { n@1106: width: inherit; n@1106: min-height: 25px; n@1106: max-height: 250px; n@1106: overflow: auto; n@1106: margin-bottom: 5px; n@1106: } n@1106: n@1106: div#popupResponse { n@1106: width: inherit; n@1106: min-height: 50px; n@1106: max-height: 320px; n@1106: overflow: auto; n@1106: position: relative; n@1106: } n@1106: n@1106: button.popupButton { n@1106: /* Button for popup window n@1106: */ n@1106: width: 50px; n@1106: height: 25px; n@1106: position: absolute; n@1106: border-radius: 5px; n@1106: border: #444; n@1106: border-width: 1px; n@1106: border-style: solid; n@1106: background-color: #fff; n@1106: } n@1106: n@1106: button#popup-proceed { n@1106: bottom: 10px; n@1106: right: 10px; n@1106: } n@1106: n@1106: button#popup-previous { n@1106: bottom: 10px; n@1106: left: 10px; n@1106: } n@1106: n@1106: div.testHalt { n@1106: /* Specify any colouring during the test halt for pre/post questions */ n@1106: background-color: rgba(0,0,0,0.5); n@1106: /* Don't mess with this bit */ n@1106: z-index: 2; n@1106: width: 100%; n@1106: height: 100%; n@1106: position: absolute; n@1106: left: 0px; n@1106: top: 0px; n@1106: } n@1106: n@1106: textarea.trackComment { n@1106: max-width: 594px; n@1106: min-width: 350px; n@1106: max-height: 60px; n@1106: resize: none; n@1106: } n@1106: n@1106: div.playhead { n@1106: width: 500px; n@1106: height: 50px; n@1106: background-color: #eee; n@1106: border-radius: 10px; n@1106: padding: 10px; n@1106: } n@1106: n@1106: div.playhead-scrub-track { n@1106: width: 100%; n@1106: height: 10px; n@1106: border-style: solid; n@1106: border-width: 1px; n@1106: } n@1106: n@1106: div#playhead-scrubber { n@1106: width: 10px; n@1106: height: 10px; n@1106: position: relative; n@1106: background-color: #000; n@1106: } n@1106: n@1106: div#master-volume-holder { n@1106: width: 250px; n@1106: float: left; n@1106: border: black 1px solid; n@1106: border-radius: 5px; n@1106: padding: 5px; n@1106: } n@1106: n@1106: input#master-volume-control { n@1106: width: 200px; n@1106: height: 25px; n@1106: float: left; n@1106: margin: 0px; n@1106: padding: 0px; n@1106: } n@1106: n@1106: span#master-volume-feedback { n@1106: width: 45px; n@1106: height: 25px; n@1106: margin-left: 5px; n@1106: float: left; n@1106: }