annotate core.css @ 1026:f13b6efc4513

Feature #1208: Added radio box option to page 'commentQuestion'. Also commentQuestion nodes are now common to core.js.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Mon, 08 Jun 2015 11:00:15 +0100
parents d897f129ad4e
children 30b9d9538cb7 4e9ab4f92f20
rev   line source
n@920 1 /* structure.css
n@920 2 * Define the structure for classes and objects in HTML
n@920 3 */
n@920 4
n@920 5 div.title {
n@920 6 width: 100%;
n@920 7 height: 50px;
n@920 8 margin-bottom: 10px;
n@920 9 font-size: 2em;
n@920 10 }
n@920 11
n@920 12 div.indicator-box {
n@920 13 position: absolute;
n@920 14 left: 150px;
n@920 15 top: 10px;
n@920 16 width: 300px;
n@920 17 height: 60px;
n@920 18 padding: 20px;
n@920 19 border-radius: 10px;
n@920 20 background-color: rgb(100,200,200);
n@920 21 }
n@920 22
n@920 23 div.comment-div {
n@920 24 border:#444444;
n@920 25 border-style:solid;
n@920 26 border-width:1px;
n@920 27 width: 624px;
n@920 28 float: left;
n@920 29 margin: 5px;
n@1026 30 height: 90px;
n@920 31 }
n@920 32
n@920 33 div.comment-div span {
n@920 34 margin-left: 15px;
n@920 35 }
n@920 36
n@920 37 div.popupHolder {
n@920 38 width: 500px;
n@920 39 height: 250px;
n@920 40 background-color: #fff;
n@920 41 border-radius: 10px;
n@920 42 box-shadow: 0px 0px 50px #000;
n@920 43 z-index: 2;
n@920 44 }
n@920 45
n@920 46 button.popupButton {
n@920 47 /* Button for popup window
n@920 48 */
n@920 49 width: 50px;
n@920 50 height: 25px;
n@920 51 position: absolute;
n@920 52 left: 440px;
n@920 53 top: 215px;
n@920 54 border-radius: 5px;
n@920 55 border: #444;
n@920 56 border-width: 1px;
n@920 57 border-style: solid;
n@920 58 background-color: #fff;
n@920 59 }
n@920 60
n@920 61 textarea.trackComment {
n@920 62 width: 618px;
n@920 63 margin-right:15px;
n@920 64 }