annotate ape.css @ 893:c40ce9c67b6b

Merge from the default branch
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Wed, 10 Jun 2015 14:39:15 +0100
parents
children 2986718bc7b8 4e9ab4f92f20
rev   line source
n@893 1 /*
n@893 2 * Hold any style information for APE interface. Customise if you like to make the interface your own!
n@893 3 *
n@893 4 */
n@893 5 body {
n@893 6 /* Set the background colour (note US English spelling) to grey*/
n@893 7 background-color: #ddd
n@893 8 }
n@893 9
n@893 10 div.title {
n@893 11 /* Specify any colouring for the title */
n@893 12 }
n@893 13
n@893 14 div.pageTitle {
n@893 15 width: auto;
n@893 16 height: 20px;
n@893 17 margin-top: 20px;
n@893 18 }
n@893 19
n@893 20 div.pageTitle span{
n@893 21 font-size: 1.5em;
n@893 22 }
n@893 23
n@893 24 div.testHalt {
n@893 25 /* Specify any colouring during the test halt for pre/post questions */
n@893 26 background-color: rgba(0,0,0,0.5);
n@893 27 /* Don't mess with this bit */
n@893 28 z-index: 2;
n@893 29 width: 100%;
n@893 30 height: 100%;
n@893 31 position: absolute;
n@893 32 left: 0px;
n@893 33 top: 0px;
n@893 34 }
n@893 35
n@893 36 button {
n@893 37 /* Specify any button structure or style */
n@893 38 min-width: 20px;
n@893 39 background-color: #ddd
n@893 40 }
n@893 41
n@893 42 div#slider {
n@893 43 /* Specify any structure for the slider holder interface */
n@893 44 background-color: #eee;
n@893 45 height: 150px;
n@893 46 margin-bottom: 5px;
n@893 47 }
n@893 48
n@893 49 div.sliderScale {
n@893 50 width: 100%;
n@893 51 min-height: 30px;
n@893 52 }
n@893 53
n@893 54 div.sliderScale span {
n@893 55 /* Any formatting of text below scale */
n@893 56 font-size: 1.2em;
n@893 57 min-width: 5px;
n@893 58 height: 20px;
n@893 59 position: absolute;
n@893 60 }
n@893 61
n@893 62 div.track-slider {
n@893 63 /* Specify any structure for the slider objects */
n@893 64 position: absolute;
n@893 65 height: inherit;
n@893 66 width: 12px;
n@893 67 float: left;
n@893 68 background-color: rgb(100,200,100);
n@893 69 }
n@893 70
n@893 71 div.track-slider-playing {
n@893 72 background-color: #FF0000;
n@893 73 }
n@893 74
n@893 75 div.comment-box-playing {
n@893 76 background-color: #FFDDDD;
n@893 77 }
n@893 78