File size: 1,477 Bytes
d5bfab8 |
1 2 3 4 5 6 7 8 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 82 83 84 85 86 87 88 89 90 91 92 |
.cell {
width: 100px;
height: 100px;
border-left: 1px solid #555;
border-top: 1px solid #555;
float: left;
background-color: #000;
}
.row {
clear: both;
}
.symbol_0 {
background-color: #000;
}
.symbol_1 {
background-color: #0074D9; /* blue */
}
.symbol_2 {
background-color: #FF4136; /* red */
}
.symbol_3 {
background-color: #2ECC40; /* green */
}
.symbol_4 {
background-color: #FFDC00; /* yellow */
}
.symbol_5 {
background-color: #AAAAAA; /* grey */
}
.symbol_6 {
background-color: #F012BE; /* fuschia */
}
.symbol_7 {
background-color: #FF851B; /* orange */
}
.symbol_8 {
background-color: #7FDBFF; /* teal */
}
.symbol_9 {
background-color: #870C25; /* brown */
}
/*Symbol picker*/
.symbol_preview {
width: 20px;
height: 20px;
float: left;
}
.grid_size_field {
width: 50px;
}
.selected-symbol-preview {
border: 2px solid orange;
}
/*Selectable*/
.ui-selected {
background-image: url(../img/black-twill.png), url(../img/brushed-alum.png);
}
.ui-selectable-helper {
border: 1px dotted #ddd;
position: absolute;
z-index: 1000;
}
/*Message display*/
#error_display {
color: red;
width: 100%;
float: left;
font-size: 14px;
margin: 20px;
}
#info_display {
color: green;
width: 100%;
float: left;
font-size: 14px;
margin: 20px;
}
|