annotate test_create/style.css @ 1276:a411eb98f2b3

WAC2016 Poster.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Thu, 24 Mar 2016 13:55:08 +0000
parents ee5f18d2fc47
children a7e50a52a896
rev   line source
n@1170 1 div#blanket {
n@1170 2 z-index: 2;
n@1170 3 background-color: rgba(0,0,0,0.5);
n@1170 4 width: 100%;
n@1170 5 height: 100%;
n@1174 6 position: fixed;
n@1170 7 left: 0px;
n@1170 8 top: 0px;
n@1170 9 }
n@1170 10
n@1170 11 div#popupHolder {
n@1170 12 z-index: 3;
n@1170 13 background-color: rgba(255,255,255,1);
n@1170 14 width: 730px;
n@1170 15 height: 480px;
n@1174 16 position: fixed;
n@1170 17 border-radius: 10px;
n@1170 18 box-shadow: 0px 0px 50px #000;
n@1170 19 padding: 10px;
n@1170 20 }
n@1170 21
n@1170 22 div#popup-title-holder {
n@1170 23 width: 100%;
n@1170 24 height: 50px;
n@1170 25 font-size: 2em;
n@1170 26 }
n@1170 27
n@1200 28 button.popup-button {
n@1170 29 width: 60px;
n@1170 30 height: 27px;
n@1170 31 padding: 5px;
n@1170 32 position: absolute;
n@1200 33 bottom: 10px;
n@1200 34 }
n@1200 35
n@1200 36 button#popup-proceed {
n@1170 37 right: 10px;
n@1200 38 }
n@1200 39
n@1200 40 button#popup-back {
n@1200 41 left: 10px;
n@1170 42 }
n@1170 43
n@1173 44 div.drag-area {
n@1173 45 border: 3px black dashed;
n@1173 46 }
n@1173 47 div.drag-over {
n@1173 48 background-color: aquamarine;
n@1173 49 }
n@1173 50 div.drag-dropped {
n@1173 51 background-color: aqua;
n@1173 52 }
n@1173 53 div.drag-error {
n@1173 54 background-color: coral
n@1173 55 }
n@1173 56
n@1173 57 div#project-drop {
n@1173 58 width: 99%;
n@1173 59 height: 50px;
n@1173 60 margin: 10px 0px;
n@1173 61 }
n@1173 62
n@1170 63 div.popup-checkbox {
n@1170 64 padding: 5px;
n@1170 65 }
n@1170 66
n@1170 67 div.popup-checkbox input {
n@1170 68 margin: 0px 5px;
n@1170 69 }
n@1170 70
n@1175 71 div.popup-option-entry {
n@1175 72 padding: 5px 0px;
n@1175 73 border-bottom: 1px solid;
n@1175 74 }
n@1175 75
n@1170 76 div.disabled{
n@1170 77 color: rgb(100,100,100);
n@1170 78 }
n@1170 79
n@1089 80
n@1089 81 div#content > div.node{
n@1089 82 background-color: rgb(200,228,151);
n@1089 83 }
n@1089 84
n@1089 85 div#content > div#setup{
n@1089 86 background-color: coral;
n@1089 87 }
n@1089 88
n@1089 89
n@1170 90 div.node {
n@1170 91 float: left;
n@1170 92 padding: 10px;
n@1170 93 border: black 2px solid;
n@1170 94 border-radius: 10px;
n@1174 95 margin: 10px;
n@1170 96 min-width: 92%;
n@1181 97 background-color: rgba(255,255,255,0.5);
n@1170 98 }
n@1170 99 div.node-title {
n@1170 100 float: left;
n@1170 101 width: 100%;
n@1170 102 font-size: 2em;
n@1170 103 margin: 5px 0px;
n@1170 104 }
n@1170 105 div.node-attributes {
n@1175 106 min-width: 92%;
n@1089 107 float: none;
n@1170 108 padding: 10px;
n@1170 109 }
n@1170 110 div.attribute {
n@1170 111 float: left;
n@1170 112 margin-right: 10px;
n@1170 113 }
n@1170 114 div.node-children {
n@1170 115 float: left;
n@1175 116 min-width: 92%;
n@1170 117 }
n@1170 118 div.node-buttons {
n@1170 119 float: left;
n@1175 120 min-width: 92%;
n@1170 121 }
n@1170 122 div.attribute input {
n@1089 123 max-width: 100%;
n@1089 124 width: 300px;
n@1170 125 margin-right: 10px;
n@1170 126 }
n@1170 127 div.attribute input[type=number] {
n@1170 128 width: 80px;
n@1089 129 }
n@1089 130 div.attribute input[type=radio], div.attribute input[type=checkbox]{
n@1089 131 width: 10px;
n@1089 132 }
n@1229 133 input:disabled+label{
n@1089 134 text-decoration: line-through;
n@1251 135 }
n@1251 136
n@1251 137 div.survey-entry-attribute {
n@1251 138 margin: 10px 0px;
n@1251 139 border: 1px gray solid;
n@1251 140 border-radius: 5px;
n@1251 141 height: 40px;
n@1251 142 line-height: 40px;
n@1251 143 padding: 0px 10px;
n@1251 144 }
n@1251 145
n@1251 146 div.survey-entry-attribute span{
n@1251 147 margin-right: 10px;
n@1170 148 }