| OLD | NEW |
| (Empty) |
| 1 body, img, div { | |
| 2 font-family: Verdana; | |
| 3 margin: 0; | |
| 4 padding: 0; | |
| 5 } | |
| 6 | |
| 7 table { | |
| 8 width:100%; | |
| 9 border-collapse: collapse; | |
| 10 border-spacing: 0; | |
| 11 padding: 8px; | |
| 12 } | |
| 13 | |
| 14 td { | |
| 15 border-top: 1px solid #DDD; | |
| 16 padding: 8px; | |
| 17 } | |
| 18 thead > tr > td { | |
| 19 border: none; | |
| 20 } | |
| 21 | |
| 22 .gm-image { | |
| 23 border: 1px dotted black; | |
| 24 } | |
| 25 | |
| 26 .gm-image:hover { | |
| 27 border: 1px dashed black; | |
| 28 } | |
| 29 | |
| 30 .left-image { | |
| 31 float: right; | |
| 32 } | |
| 33 | |
| 34 .right-image { | |
| 35 text-align: right; | |
| 36 } | |
| 37 | |
| 38 .result { | |
| 39 padding: 8px; | |
| 40 cursor: default; | |
| 41 opacity: 0.7; | |
| 42 } | |
| 43 | |
| 44 .result:hover { | |
| 45 border: 2px dotted #DDD; | |
| 46 padding: 6px; | |
| 47 opacity: 1.0; | |
| 48 } | |
| 49 | |
| 50 .result-0 { | |
| 51 background-color: #268bd2; | |
| 52 } | |
| 53 | |
| 54 .result-1 { | |
| 55 background-color: #d33682; | |
| 56 } | |
| 57 | |
| 58 .result-2 { | |
| 59 background-color: #b58900; | |
| 60 } | |
| 61 | |
| 62 .result-3 { | |
| 63 background-color: #cb4b16; | |
| 64 } | |
| 65 | |
| 66 .result-4 { | |
| 67 background-color: #6c71c4; | |
| 68 } | |
| 69 | |
| 70 .result-5 { | |
| 71 background-color: #dc322f; | |
| 72 } | |
| 73 | |
| 74 .result-6 { | |
| 75 background-color: #2aa198; | |
| 76 } | |
| 77 | |
| 78 .result-7 { | |
| 79 background-color: #859900; | |
| 80 } | |
| OLD | NEW |