n@33: /* n@33: * Hold any style information for APE interface. Customise if you like to make the interface your own! n@33: * n@33: */ n@33: body { n@33: /* Set the background colour (note US English spelling) to grey*/ n@33: background-color: #ddd n@33: } n@33: n@33: div.title { n@33: /* Specify any colouring for the title */ n@33: } n@33: n@33: div.testHalt { n@33: /* Specify any colouring during the test halt for pre/post questions */ n@33: background-color: rgba(0,0,0,0.5); n@33: /* Don't mess with this bit */ n@33: z-index: 2; n@33: width: 100%; n@33: height: 100%; n@33: position: absolute; n@33: left: 0px; n@33: top: 0px; n@33: } n@33: n@33: button { n@33: /* Specify any button structure or style */ n@33: min-width: 20px; n@33: background-color: #ddd n@33: } n@33: n@33: div#slider { n@33: /* Specify any structure for the slider holder interface */ n@33: background-color: #eee; n@33: height: 150px; n@33: margin-bottom: 25px; n@33: } n@33: n@33: div.track-slider { n@33: /* Specify any strcture for the slider objects */ n@33: position: absolute; n@33: height: inherit; n@33: width: 12px; n@33: float: left; n@33: background-color: rgb(100,200,100); n@33: } n@33: n@33: div.popupHolder { n@33: width: 500px; n@33: height: 250px; n@33: background-color: #fff; n@33: border-radius: 10px; n@33: box-shadow: 0px 0px 50px #000; n@33: z-index: 2; n@33: } n@33: n@33: button#preTestNext { n@33: /* Button for popup window n@33: */ n@33: width: 50px; n@33: height: 25px; n@33: position: absolute; n@33: left: 440px; n@33: top: 215px; n@33: border-radius: 5px; n@33: border: #444; n@33: border-width: 1px; n@33: border-style: solid; n@33: background-color: #fff; n@33: }