annotate interfaces/ape.css @ 2601:2577d983f291

Beautified entire project.
author Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk>
date Mon, 14 Nov 2016 14:23:41 +0000
parents dc13bd68ea34
children be845c47bdaf
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 */
nicholas@2601 5
nickjillings@1341 6 body {
nicholas@2601 7 /* Set the background colour (note US English spelling) to grey*/
nicholas@2601 8 background-color: #ddd
nickjillings@1341 9 }
nickjillings@1341 10 div.title {
nicholas@2601 11 /* Specify any colouring for the title */
nickjillings@1341 12 }
nickjillings@1341 13 div.pageTitle {
nicholas@2601 14 width: auto;
nicholas@2601 15 height: 20px;
nicholas@2601 16 margin-top: 5px;
nicholas@2601 17 margin-bottom: 10px;
nickjillings@1341 18 }
nicholas@2601 19 div.pageTitle span {
nicholas@2601 20 font-size: 1.5em;
nickjillings@1341 21 }
nickjillings@1341 22 button {
nicholas@2601 23 /* Specify any button structure or style */
nicholas@2601 24 min-width: 20px;
nicholas@2601 25 background-color: #ddd
nickjillings@1341 26 }
nickjillings@1341 27 div.slider {
nicholas@2601 28 /* Specify any structure for the slider holder interface */
nicholas@2601 29 background-color: #eee;
nicholas@2601 30 height: 150px;
nicholas@2601 31 margin: 5px 50px;
nicholas@2601 32 -moz-user-select: -moz-none;
nicholas@2601 33 -khtml-user-select: none;
nicholas@2601 34 -webkit-user-select: none;
nickjillings@1341 35 }
nickjillings@1341 36 div.sliderScale {
nicholas@2601 37 width: 100%;
nicholas@2601 38 min-height: 30px;
nicholas@2601 39 -moz-user-select: -moz-none;
nicholas@2601 40 -khtml-user-select: none;
nicholas@2601 41 -webkit-user-select: none;
nickjillings@1341 42 }
nickjillings@1341 43 div.sliderScale span {
nicholas@2601 44 /* Any formatting of text below scale */
nicholas@2601 45 font-size: 1.2em;
nicholas@2601 46 min-width: 5px;
nicholas@2391 47 max-width: 100px;
nicholas@2391 48 text-align: center;
nicholas@2601 49 height: 20px;
nicholas@2601 50 position: absolute;
nickjillings@1341 51 }
nickjillings@1341 52 div.track-slider {
nicholas@2601 53 /* Specify any structure for the slider objects */
nicholas@2601 54 position: absolute;
nicholas@2601 55 height: inherit;
nicholas@2601 56 width: 12px;
nicholas@2601 57 float: left;
nicholas@2601 58 background-color: rgb(100, 200, 100);
nicholas@2601 59 -moz-user-select: -moz-none;
nicholas@2601 60 -khtml-user-select: none;
nicholas@2601 61 -webkit-user-select: none;
nickjillings@1296 62 border: 1px solid black;
nickjillings@1341 63 }
nicholas@2396 64 div#outside-reference-holder {
nicholas@2396 65 display: flex;
nicholas@2396 66 align-content: center;
nicholas@2396 67 justify-content: center;
nicholas@2396 68 margin-bottom: 5px;
nicholas@2396 69 }
nickjillings@1341 70 div.outside-reference {
nicholas@2601 71 width: 120px;
nicholas@2396 72 text-align: center;
nicholas@2601 73 height: 20px;
nicholas@2601 74 background-color: rgb(100, 200, 100);
nicholas@2396 75 position: inherit;
nicholas@2396 76 margin: 0px 5px;
nickjillings@1341 77 }
nickjillings@1341 78 div.track-slider-disabled {
nicholas@2601 79 background-color: rgb(100, 100, 100);
nickjillings@1341 80 }
nickjillings@1341 81 div.track-slider-playing {
nicholas@2601 82 background-color: #FF0000;
nickjillings@1341 83 }
nickjillings@1341 84 div.comment-box-playing {
nicholas@2601 85 background-color: #FFDDDD;
nickjillings@1341 86 }
nickjillings@1356 87 div#master-volume-holder {
nickjillings@1356 88 position: absolute;
nickjillings@1356 89 top: 10px;
nickjillings@1356 90 left: 120px;
nicholas@2601 91 }