annotate interfaces/ape.css @ 2438:02df8de58e7b

Merge branch 'master' of https://github.com/BrechtDeMan/WebAudioEvaluationTool
author www-data <www-data@sucuk.dcs.qmul.ac.uk>
date Thu, 02 Jun 2016 17:20:55 +0100
parents dc13bd68ea34
children 464c6c6692d6
rev   line source
nickjillings@1341 1 /*
nickjillings@1341 2 * Hold any style information for APE interface. Customise if you like to make the interface your own!
nickjillings@1341 3 *
nickjillings@1341 4 */
nickjillings@1341 5 body {
nickjillings@1341 6 /* Set the background colour (note US English spelling) to grey*/
nickjillings@1341 7 background-color: #ddd
nickjillings@1341 8 }
nickjillings@1341 9
nickjillings@1341 10 div.title {
nickjillings@1341 11 /* Specify any colouring for the title */
nickjillings@1341 12 }
nickjillings@1341 13
nickjillings@1341 14 div.pageTitle {
nickjillings@1341 15 width: auto;
nickjillings@1341 16 height: 20px;
nickjillings@1341 17 margin-top: 5px;
nickjillings@1341 18 margin-bottom: 10px;
nickjillings@1341 19 }
nickjillings@1341 20
nickjillings@1341 21 div.pageTitle span{
nickjillings@1341 22 font-size: 1.5em;
nickjillings@1341 23 }
nickjillings@1341 24
nickjillings@1341 25 button {
nickjillings@1341 26 /* Specify any button structure or style */
nickjillings@1341 27 min-width: 20px;
nickjillings@1341 28 background-color: #ddd
nickjillings@1341 29 }
nickjillings@1341 30
nickjillings@1341 31 div.slider {
nickjillings@1341 32 /* Specify any structure for the slider holder interface */
nickjillings@1341 33 background-color: #eee;
nickjillings@1341 34 height: 150px;
nicholas@2391 35 margin: 5px 50px;
nickjillings@1341 36 -moz-user-select: -moz-none;
nickjillings@1341 37 -khtml-user-select: none;
nickjillings@1341 38 -webkit-user-select: none;
nickjillings@1341 39 }
nickjillings@1341 40
nickjillings@1341 41 div.sliderScale {
nickjillings@1341 42 width: 100%;
nickjillings@1341 43 min-height: 30px;
nickjillings@1341 44 -moz-user-select: -moz-none;
nickjillings@1341 45 -khtml-user-select: none;
nickjillings@1341 46 -webkit-user-select: none;
nickjillings@1341 47 }
nickjillings@1341 48
nickjillings@1341 49 div.sliderScale span {
nickjillings@1341 50 /* Any formatting of text below scale */
nickjillings@1341 51 font-size: 1.2em;
nickjillings@1341 52 min-width: 5px;
nicholas@2391 53 max-width: 100px;
nicholas@2391 54 text-align: center;
nickjillings@1341 55 height: 20px;
nickjillings@1341 56 position: absolute;
nickjillings@1341 57 }
nickjillings@1341 58
nickjillings@1341 59 div.track-slider {
nickjillings@1341 60 /* Specify any structure for the slider objects */
nickjillings@1341 61 position: absolute;
nickjillings@1341 62 height: inherit;
nickjillings@1341 63 width: 12px;
nickjillings@1341 64 float: left;
nickjillings@1341 65 background-color: rgb(100,200,100);
nickjillings@1341 66 -moz-user-select: -moz-none;
nickjillings@1341 67 -khtml-user-select: none;
nickjillings@1341 68 -webkit-user-select: none;
nickjillings@1296 69 border: 1px solid black;
nickjillings@1341 70 }
nickjillings@1341 71
nicholas@2396 72 div#outside-reference-holder {
nicholas@2396 73 display: flex;
nicholas@2396 74 align-content: center;
nicholas@2396 75 justify-content: center;
nicholas@2396 76 margin-bottom: 5px;
nicholas@2396 77 }
nicholas@2396 78
nickjillings@1341 79 div.outside-reference {
nickjillings@1341 80 width:120px;
nicholas@2396 81 text-align: center;
nickjillings@1341 82 height:20px;
nickjillings@1341 83 background-color: rgb(100,200,100);
nicholas@2396 84 position: inherit;
nicholas@2396 85 margin: 0px 5px;
nickjillings@1341 86 }
nickjillings@1341 87
nickjillings@1341 88 div.track-slider-disabled {
nickjillings@1341 89 background-color: rgb(100,100,100);
nickjillings@1341 90 }
nickjillings@1341 91
nickjillings@1341 92 div.track-slider-playing {
nickjillings@1341 93 background-color: #FF0000;
nickjillings@1341 94 }
nickjillings@1341 95
nickjillings@1341 96 div.comment-box-playing {
nickjillings@1341 97 background-color: #FFDDDD;
nickjillings@1341 98 }
nickjillings@1356 99
nickjillings@1356 100 div#master-volume-holder {
nickjillings@1356 101 position: absolute;
nickjillings@1356 102 top: 10px;
nickjillings@1356 103 left: 120px;
nickjillings@1356 104 }