basic.css 8.06 KB
Newer Older
unknown's avatar
unknown committed
1 2 3 4 5
html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;    
maximXbs's avatar
maximXbs committed
6
    border-radius: 35px;
unknown's avatar
unknown committed
7
    overflow: hidden;
maximXbs's avatar
maximXbs committed
8
    font-family: sans-serif;
unknown's avatar
unknown committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
}

body{
    background-image: url(../img/bg.png);
}

.toggle_mode{
    width: 100%;
    height: 25px;
    border-bottom: 1px solid black;
    background-color: #ccc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

#display_img, #edit_img{
    width: 15px;
    height: 15px;
    margin: 5px 10px;
}

#display_text, #edit_text{
    height: 19px;
    padding: 3px 0 0 0;
}

.selected{

}

#display:hover, #edit:hover{
    background-color: #999;
}

.cont{
    width: 100%;
    border-bottom: 1px solid black;
    margin: 0;
    padding: 0;
    position: relative;
}

.sub_cont{
    width: 100%;
    padding: 0;
    margin: 20px 0 0 0;
    min-height: 60px;
}

.imgs_cont{
    width: 100%;
    margin: 0;
}

.number_cont{
    width: 40px;
    height: 33px;
    margin-left: 40px;
    margin-right: 10px;
    background-image: url(../img/circle.png);
    background-repeat: no-repeat;
    text-align: center;
    float: left;
    font-size: 130%;
    padding-top: 7px;
    font-weight: bold;
}

.text_cont{
    width: 80%;
    min-height: 40px;
unknown's avatar
unknown committed
82
    max-height: 60px;
unknown's avatar
unknown committed
83
    float: right;
unknown's avatar
unknown committed
84
    overflow-x: hidden;
unknown's avatar
unknown committed
85 86 87
    background-color: #ccc;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
unknown's avatar
unknown committed
88 89
    padding-left: 10px; 
    display: block;
unknown's avatar
unknown committed
90
    word-break: break-all;
unknown's avatar
unknown committed
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
}

.close_cont{
    width: 20px;
    height: 20px;
    background-image: url(../img/close_cont.png);
    cursor: pointer;
    position: absolute;
    top: -15px;
    left: 5px;
}

.add_img{
    width: 120px;
    height: 120px;
    margin: 10px 20px;
    background-image: url(../img/add_text.png);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    float: left;
    display: inline-block;
}

.img_block{
    display: inline-block;
}

.img_block, .text_block{
    width: 120px;
unknown's avatar
unknown committed
121 122
    height: 119px;
    max-height: 120px;
unknown's avatar
unknown committed
123 124 125 126 127 128 129
    margin: 10px 20px;
    cursor: pointer;
    float: left;
    position: relative;
    border: 1px solid #ccc;
    -moz-box-shadow: #ccc -1px 0 4px;
    -webkit-box-shadow: #ccc -1px 0 4px;
unknown's avatar
unknown committed
130
    box-shadow: #ccc -1px 0 4px;    
unknown's avatar
unknown committed
131 132
}

unknown's avatar
unknown committed
133
.text_block{    
unknown's avatar
unknown committed
134 135
    display: table;
    text-align: center;
unknown's avatar
unknown committed
136
    background-color: white;
unknown's avatar
unknown committed
137 138 139 140 141 142 143 144 145 146 147 148
}

.audio_block{
    width: 120px;
    height: 30px;
    margin: 44px 5px;
    position: relative;
    float: left;
    display: inline-block;
}

.text_subblock{
unknown's avatar
unknown committed
149 150 151
    max-height: 120px;
    min-width: 116px;
    max-width: 200px;
unknown's avatar
unknown committed
152 153 154
    display: table-cell;
    vertical-align: middle;
    font-size: 120%;
unknown's avatar
unknown committed
155
    word-wrap: break-word;
unknown's avatar
unknown committed
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
}

.close_img, .clear_img, .numb_img {
    width: 30px;
    height: 30px;    
    background-repeat: no-repeat;
    position: absolute;    
    right: -15px;
    cursor: pointer;
}

.close_img{
    background-image: url(../img/close_img.png);
    top: -15px;
}

.clear_img{
    background-image: url(../img/clear_img.png);
    top: 15px;
}

.numb_img{
    background-image: url(../img/numb_img.png); 
    left: -15px;
    top: -15px;
    color: white;
    font-weight: bold;
    font-size: 130%;
}

.add_block{
    margin: 20px 0 0 20px;
    width: 110px;
    height: 25px;
    background-image: url(../img/add_block.png);
    background-repeat: no-repeat;
    padding-left: 40px;
    padding-top: 5px;
    cursor: pointer;
    background-color: #ccc;
    -webkit-border-radius: 15px;
    border-radius: 15px;    
}

.ch_box{
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 0;
    right: 0;
}

.right{
    background-color: #9f9;
}

.clear{
    clear: both;
}

.over{
    background-color: #ccc;
}

.play, .stop{
    height: 30px;
    width: 70px;    
    float: left;
    cursor: pointer;
}

.play{
    background-image: url(../img/play.png);
}

.stop{
    background-image: url(../img/stop.png);
}

.replay{
    height: 30px;
    width: 32px;
    margin-left: 10px;
    float: left;
    background-image: url(../img/replay.png);
    background-repeat: no-repeat;
    cursor: pointer;
}

/*new design*/

.body_table{
    width: 100%;
    height: 100%;
    border-spacing: 0;
}

/*top*/

.b_top_left{
    width: 54px;
    background-image: url(../img/top_left.png);
    background-repeat: no-repeat;
}

.b_top_right{
    width: 54px;
    background-image: url(../img/top_right.png);
    background-repeat: no-repeat;
}

.b_top_center{
    height: 54px;
    background-image: url(../img/top.png);
    background-repeat: repeat-x;
}

/*bottom*/

.b_bottom_left{
    width: 54px;
    background-image: url(../img/bottom_left.png);
    background-repeat: no-repeat;
}

.b_bottom_right{
    width: 54px;
    background-image: url(../img/bottom_right.png);
    background-repeat: no-repeat;
}

.b_bottom_center{
    background-image: url(../img/bottom.png);
    background-repeat: repeat-x;
}

/*center*/

.b_center_left{
    width: 54px;
    background-image: url(../img/left.png);
    background-repeat: repeat-y;
}

.b_center_right{
    width: 54px;
    background-image: url(../img/right.png);
    background-repeat: repeat-y;
}

#data{
    width: 100%;
    height: 100%;    
    min-height: 250px;
    overflow: auto;
}

#wgt_name{
    height: 44px;
    margin: 10px 10px 0 10px;
    padding: 0;
    float: left;
maximXbs's avatar
maximXbs committed
318
    font-family: sans-serif;
unknown's avatar
unknown committed
319
    font-size: 24px;
maximXbs's avatar
maximXbs committed
320 321
    color: #7F613F;
    text-shadow: #FFDCA9 0 1px 0;
unknown's avatar
unknown committed
322 323
}

unknown's avatar
unknown committed
324
#wgt_reload, #wgt_edit, #wgt_display, #wgt_help{
unknown's avatar
unknown committed
325 326 327
    cursor: pointer;
    margin: 10px 10px 0 0;
    float: right;
maximXbs's avatar
maximXbs committed
328
    font-family: sans-serif;
maximXbs's avatar
maximXbs committed
329 330
    font-size: 24px;    
    line-height: 32px;
unknown's avatar
unknown committed
331 332 333
}

#wgt_display{
maximXbs's avatar
maximXbs committed
334 335 336
    padding-left: 35px;
    background: url(../img/toolbar-edit.png) left -32px no-repeat;
    color: white;
unknown's avatar
unknown committed
337 338 339 340
    display: none;
}

#wgt_edit{    
maximXbs's avatar
maximXbs committed
341 342 343 344
    padding-left: 35px;
    background: url(../img/slate-toolbar-edit.png) left top no-repeat;
    color: #7F613F;
    text-shadow: #FFDCA9 0 1px 0;
unknown's avatar
unknown committed
345 346 347
}

#wgt_reload{
maximXbs's avatar
maximXbs committed
348 349 350 351
    padding-left: 35px;
    background: url(../img/slate-toolbar-reload.png) left top no-repeat;
    color: #7F613F;
    text-shadow: #FFDCA9 0 1px 0;
unknown's avatar
unknown committed
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
}

.btl_pad{
    background-image: url(../img/pad-top-left.png) !important;
}

.btc_pad{
    background-image: url(../img/pad-top.png) !important;
}

.btr_pad{
    background-image: url(../img/pad-top-right.png) !important;
}

.bcl_pad{
    background-image: url(../img/pad-left.png) !important;
}

.bcr_pad{
    background-image: url(../img/pad-right.png) !important;
}

.bbl_pad{
    background-image: url(../img/pad-bottom-left.png) !important;
}

.bbc_pad{
    background-image: url(../img/pad-bottom.png) !important;
}

.bbr_pad{
    background-image: url(../img/pad-bottom-right.png) !important;
}

maximXbs's avatar
maximXbs committed
386 387
.without_radius{
    border-radius: 0 !important;
unknown's avatar
unknown committed
388 389
}

maximXbs's avatar
maximXbs committed
390 391
.without_back{
    background: none !important;
unknown's avatar
unknown committed
392 393
}

maximXbs's avatar
maximXbs committed
394 395 396
.pad_color{
    color: #FC9 !important;
    text-shadow: none !important;
unknown's avatar
unknown committed
397 398
}

maximXbs's avatar
maximXbs committed
399 400
.pad_reload{
    background: url(../img/toolbar-reload.png) left top no-repeat !important;
unknown's avatar
unknown committed
401
}
unknown's avatar
unknown committed
402

maximXbs's avatar
maximXbs committed
403 404
.pad_edit{
    background: url(../img/toolbar-edit.png) left top no-repeat !important;    
unknown's avatar
unknown committed
405 406
}

maximXbs's avatar
maximXbs committed
407 408
.pad_help{
    background: url(../img/toolbar-help.png) left top no-repeat !important;
unknown's avatar
unknown committed
409 410
}

maximXbs's avatar
maximXbs committed
411 412
.help_wood{
    background: url(../img/slate-toolbar-help.png) left -32px no-repeat !important;
unknown's avatar
unknown committed
413
    color: white !important;
maximXbs's avatar
maximXbs committed
414
    text-shadow: #7F613F 0 -1px 0 !important;
unknown's avatar
unknown committed
415 416
}

maximXbs's avatar
maximXbs committed
417 418 419
.help_pad{
    background: url(../img/toolbar-help.png) left -32px no-repeat !important;
    color: white !important;
unknown's avatar
unknown committed
420 421 422
}

#wgt_help{
maximXbs's avatar
maximXbs committed
423 424 425 426
    padding-left: 35px;
    background: url(../img/slate-toolbar-help.png) left top no-repeat;
    color: #7F613F;
    text-shadow: #FFDCA9 0 1px 0;
unknown's avatar
unknown committed
427 428 429 430 431 432 433 434 435 436 437
}

#help{
    height: 100%;    
    overflow: auto;
    display: none;
    background-color: #ccc;
    padding: 5px;
}

.open{
maximXbs's avatar
maximXbs committed
438 439 440 441 442 443 444 445 446 447 448 449

}

#parameters{    
    display: none;
    padding: 10px 20px;
    background: url("../img/parameters-bg.png");
    border-radius: 4px 4px 0 0;
}

.inline{
    display: inline-block;
maximXbs's avatar
maximXbs committed
450
    font-family: sans-serif;
maximXbs's avatar
maximXbs committed
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
    font-size: 14px;
    color: #666;
}

#parameters label {
    font-style: italic;
}

#style_select{   
    margin-left: 10px;
}

.display_wood{
    background: url(../img/slate-toolbar-edit.png) left -32px no-repeat !important;
    text-shadow: #7F613F 0 -1px 0;
}

.radius_ft{
    border-radius: 45px !important;
unknown's avatar
unknown committed
470
}