[177] | 1 | /* |
---|
| 2 | Document : visualeditors |
---|
| 3 | Created on : 6-dec-2011, 13:43:58 |
---|
| 4 | Author : Thijs Schipper |
---|
| 5 | Description: Attempt at a new -organized- stylesheet |
---|
| 6 | Purpose of the stylesheet follows. |
---|
| 7 | */ |
---|
| 8 | |
---|
| 9 | /* |
---|
| 10 | TODO customize this sample style |
---|
| 11 | Syntax recommendation http://www.w3.org/TR/REC-CSS2/ |
---|
| 12 | */ |
---|
| 13 | |
---|
| 14 | root { |
---|
| 15 | display: block; |
---|
| 16 | } |
---|
| 17 | |
---|
| 18 | html { |
---|
| 19 | background-image: url('../images/bg/blueishgridblock.png'); |
---|
| 20 | height: 100%; |
---|
| 21 | font-size: 12px; |
---|
| 22 | font-family: sans-serif; |
---|
| 23 | } |
---|
| 24 | |
---|
| 25 | #wrapper { |
---|
| 26 | width: 80%; |
---|
| 27 | min-width: 800px; |
---|
| 28 | margin: 0 auto; |
---|
| 29 | } |
---|
| 30 | |
---|
| 31 | #content { |
---|
| 32 | width: 100%; |
---|
| 33 | position: relative; |
---|
| 34 | padding: 2em 0; |
---|
| 35 | } |
---|
| 36 | |
---|
| 37 | #surveyEditor { |
---|
| 38 | background-color: #0000FF; |
---|
| 39 | } |
---|
| 40 | |
---|
| 41 | |
---|
| 42 | |
---|
| 43 | |
---|
| 44 | |
---|
| 45 | |
---|
| 46 | |
---|
| 47 | |
---|
| 48 | |
---|
| 49 | |
---|
| 50 | .largeFrame { |
---|
| 51 | width: auto; |
---|
| 52 | padding: 0 1em; |
---|
| 53 | float: left; |
---|
| 54 | clear: both; |
---|
| 55 | |
---|
| 56 | |
---|
| 57 | -moz-box-shadow: 2px 2px 1px #888; |
---|
| 58 | -webkit-box-shadow: 2px 2px 1px #888; |
---|
| 59 | box-shadow: 2px 2px 1px #888; |
---|
| 60 | background-image: linear-gradient(top, #B0B0B0 21%, #888888 80%); |
---|
| 61 | background-image: -o-linear-gradient(top, #B0B0B0 21%, #888888 80%); |
---|
| 62 | background-image: -moz-linear-gradient(top, #B0B0B0 21%, #888888 80%); |
---|
| 63 | background-image: -webkit-linear-gradient(top, #B0B0B0 21%, #888888 80%); |
---|
| 64 | background-image: -ms-linear-gradient(top, #B0B0B0 21%, #888888 80%); |
---|
| 65 | |
---|
| 66 | background-image: -webkit-gradient( |
---|
| 67 | linear, |
---|
| 68 | left top, |
---|
| 69 | left bottom, |
---|
| 70 | color-stop(0.21, #B0B0B0), |
---|
| 71 | color-stop(0.8, #888888) |
---|
| 72 | ); |
---|
| 73 | background-position: bottom; |
---|
| 74 | background-repeat: repeat-x; |
---|
| 75 | border: 1px solid #FFF; |
---|
| 76 | border-radius: 1em; |
---|
| 77 | -moz-border-radius: 1em; |
---|
| 78 | } |
---|
| 79 | |
---|
| 80 | .innerLargeFrame { |
---|
| 81 | width: auto; |
---|
| 82 | max-height: 300px; |
---|
| 83 | overflow-y: auto; |
---|
| 84 | overflow-x: hidden; |
---|
| 85 | padding: 1em 1em; |
---|
| 86 | border: 1px solid #FFF; |
---|
| 87 | border-radius: 0.5em; |
---|
| 88 | -maz-border-radius: 0.5em; |
---|
| 89 | float: left; |
---|
| 90 | clear: both; |
---|
| 91 | |
---|
| 92 | |
---|
| 93 | background-image: linear-gradient(bottom, #B0B0B0 21%, #888888 80%); |
---|
| 94 | background-image: -o-linear-gradient(bottom, #B0B0B0 21%, #888888 80%); |
---|
| 95 | background-image: -moz-linear-gradient(tbottomop, #B0B0B0 21%, #888888 80%); |
---|
| 96 | background-image: -webkit-linear-gradient(bottom, #B0B0B0 21%, #888888 80%); |
---|
| 97 | background-image: -ms-linear-gradient(bottom, #B0B0B0 21%, #888888 80%); |
---|
| 98 | background-image: -webkit-gradient( |
---|
| 99 | linear, |
---|
| 100 | left bottom, |
---|
| 101 | left top, |
---|
| 102 | color-stop(0.21, #B0B0B0), |
---|
| 103 | color-stop(0.8, #888888) |
---|
| 104 | ); |
---|
| 105 | background-position: bottom; |
---|
| 106 | background-repeat: repeat-x; |
---|
| 107 | } |
---|
| 108 | |
---|
| 109 | .smallFrame { |
---|
| 110 | margin: 0.5em auto; |
---|
| 111 | float: left; |
---|
| 112 | clear: both; |
---|
| 113 | background-color: #555; |
---|
| 114 | -moz-box-shadow: 2px 2px 1px #888; |
---|
| 115 | -webkit-box-shadow: 2px 2px 1px #888; |
---|
| 116 | box-shadow: 2px 2px 1px #888; |
---|
| 117 | border: 1px solid #FFF; |
---|
| 118 | } |
---|
| 119 | |
---|
| 120 | .smallFrame .content { |
---|
| 121 | width: 600px; |
---|
| 122 | float: left; |
---|
| 123 | clear: left; |
---|
| 124 | padding: 0.25em 1em; |
---|
| 125 | |
---|
| 126 | background-image: linear-gradient(top, #B0B0B0 21%, #888888 80%); |
---|
| 127 | background-image: -o-linear-gradient(top, #B0B0B0 21%, #888888 80%); |
---|
| 128 | background-image: -moz-linear-gradient(top, #B0B0B0 21%, #888888 80%); |
---|
| 129 | background-image: -webkit-linear-gradient(top, #B0B0B0 21%, #888888 80%); |
---|
| 130 | background-image: -ms-linear-gradient(top, #B0B0B0 21%, #888888 80%); |
---|
| 131 | background-image: -webkit-gradient( |
---|
| 132 | linear, |
---|
| 133 | left bottom, |
---|
| 134 | left top, |
---|
| 135 | color-stop(0.21, #B0B0B0), |
---|
| 136 | color-stop(0.8, #888888) |
---|
| 137 | ); |
---|
| 138 | background-position: bottom; |
---|
| 139 | background-repeat: repeat-x; |
---|
| 140 | } |
---|
| 141 | |
---|
| 142 | |
---|
| 143 | |
---|
| 144 | |
---|
| 145 | |
---|
| 146 | |
---|
| 147 | |
---|
| 148 | |
---|
| 149 | |
---|
| 150 | |
---|
| 151 | |
---|
| 152 | .largeTitle { |
---|
| 153 | width: auto; |
---|
| 154 | padding: 0.25em 1em; |
---|
| 155 | font-size: 1.5em; |
---|
| 156 | color: #FFF; |
---|
| 157 | float: left; |
---|
| 158 | text-shadow: #555 0px 0px 5px; |
---|
| 159 | } |
---|
| 160 | |
---|
| 161 | .smallTitle { |
---|
| 162 | width: auto; |
---|
| 163 | min-height: 1.5em; |
---|
| 164 | padding: 0.25em 1em; |
---|
| 165 | font-size: 1.25em; |
---|
| 166 | color: #FFF; |
---|
| 167 | float: left; |
---|
| 168 | } |
---|
| 169 | |
---|
| 170 | .smallTitle .listNumber { |
---|
| 171 | float: left; |
---|
| 172 | color: #CCFFFF; |
---|
| 173 | font-size: 2em; |
---|
| 174 | } |
---|
| 175 | |
---|
| 176 | .controls { |
---|
| 177 | clear: both; |
---|
| 178 | text-align: right; |
---|
| 179 | float: right; |
---|
| 180 | min-height: 2.5em; |
---|
| 181 | } |
---|
| 182 | |
---|
| 183 | .questionBody { |
---|
| 184 | float: left; |
---|
| 185 | clear: left; |
---|
| 186 | margin: 1em 0; |
---|
| 187 | font-style: italic; |
---|
| 188 | } |
---|
| 189 | |
---|
| 190 | .questionParamsView { |
---|
| 191 | float: left; |
---|
| 192 | clear: left; |
---|
| 193 | border: 1px solid #555; |
---|
| 194 | padding: 0.5em; |
---|
| 195 | font-weight: bold; |
---|
| 196 | } |
---|
| 197 | |
---|
| 198 | |
---|
| 199 | |
---|
| 200 | .bigButton { |
---|
| 201 | padding:0.25em; |
---|
| 202 | margin: 0.25em; |
---|
| 203 | border: 1px solid #555; |
---|
| 204 | border-radius: 0.5em; |
---|
| 205 | -moz-border-radius: 0.5em; |
---|
| 206 | background-color: transparent; |
---|
| 207 | } |
---|
| 208 | |
---|
| 209 | .bigButton:hover { |
---|
| 210 | border-color: #1c94c4; |
---|
| 211 | background-color: #ddd; |
---|
| 212 | } |
---|
| 213 | |
---|
| 214 | .bigButton .buttonIcon { |
---|
| 215 | |
---|
| 216 | } |
---|
| 217 | |
---|
| 218 | .bigButton.vert { |
---|
| 219 | clear:both; |
---|
| 220 | } |
---|
| 221 | |
---|
| 222 | |
---|
| 223 | .smallButton { |
---|
| 224 | margin: 0.5em 0.25em; |
---|
| 225 | padding: 0.25em 0.5em; |
---|
| 226 | color: #555; |
---|
| 227 | font-weight: bold; |
---|
| 228 | border: 1px solid #555; |
---|
| 229 | border-radius: 0.25em; |
---|
| 230 | -moz-border-radius: 0,25em; |
---|
| 231 | background-color: transparent; |
---|
| 232 | } |
---|
| 233 | |
---|
| 234 | .smallFrame .smallButton { |
---|
| 235 | color: #ccc; |
---|
| 236 | border-color: #ccc; |
---|
| 237 | } |
---|
| 238 | |
---|
| 239 | .smallButton:hover { |
---|
| 240 | color: #000; |
---|
| 241 | background-color: #ddd; |
---|
| 242 | border-color: #1c94c4; |
---|
| 243 | } |
---|
| 244 | |
---|
| 245 | |
---|
| 246 | |
---|
| 247 | |
---|
| 248 | /****************************/ |
---|
| 249 | /* PIPELINE EDITOR SPECIFIC */ |
---|
| 250 | /****************************/ |
---|
| 251 | |
---|
| 252 | #seqContent { |
---|
| 253 | overflow-y: hidden; |
---|
| 254 | overflow-x: scroll; |
---|
| 255 | width: 800px; |
---|
| 256 | height: 9em; |
---|
| 257 | float: left; |
---|
| 258 | } |
---|
| 259 | |
---|
| 260 | #seqContentWrapper { |
---|
| 261 | clear: none; |
---|
| 262 | float: left; |
---|
| 263 | margin-right: -32000px; |
---|
| 264 | } |
---|
| 265 | |
---|
| 266 | #seqContentWrapper .divider { |
---|
| 267 | width: 10px; |
---|
| 268 | height: 50px; |
---|
| 269 | margin: 10px 15px 0 20px; |
---|
| 270 | background-image: url('../images/ui/sequencerDivider.png'); |
---|
| 271 | float: left; |
---|
| 272 | } |
---|
| 273 | |
---|
| 274 | .displayStep { |
---|
| 275 | width: 52px; |
---|
| 276 | padding: 0; |
---|
| 277 | margin-top: 10px; |
---|
| 278 | background-repeat: no-repeat; |
---|
| 279 | float: left; |
---|
| 280 | text-align: center; |
---|
| 281 | -webkit-user-select: none; |
---|
| 282 | -khtml-user-select: none; |
---|
| 283 | -moz-user-select: none; |
---|
| 284 | -o-user-select: none; |
---|
| 285 | user-select: none; |
---|
| 286 | } |
---|
| 287 | |
---|
| 288 | .displayStep.selected { |
---|
| 289 | -moz-box-shadow: 0 0 50px #FFF; |
---|
| 290 | -webkit-box-shadow: 0 0 50px #FFF; |
---|
| 291 | box-shadow: 0 0 50px #FFF; |
---|
| 292 | |
---|
| 293 | } |
---|
| 294 | |
---|
| 295 | .displayStep .displayStepIcon { |
---|
| 296 | width: 50px; |
---|
| 297 | height: 50px; |
---|
| 298 | border: 2px solid #444444; |
---|
| 299 | color: #FFF; |
---|
| 300 | } |
---|
| 301 | |
---|
| 302 | .displayStep p{ |
---|
| 303 | margin-top: 5px; |
---|
| 304 | font-weight: normal; |
---|
| 305 | font-size: 1em; |
---|
| 306 | } |
---|
| 307 | |
---|
| 308 | #toolbox { |
---|
| 309 | margin-top: 2em; |
---|
| 310 | } |
---|
| 311 | |
---|
| 312 | #toolbox .content { |
---|
| 313 | padding: 0.5em; |
---|
| 314 | } |
---|
| 315 | |
---|
| 316 | #toolbox .bigButton p { |
---|
| 317 | position: relative; |
---|
| 318 | top: -1.75em; |
---|
| 319 | margin-left: 0.5em; |
---|
| 320 | display: inline; |
---|
| 321 | } |
---|
| 322 | |
---|