zachr@google.com | 9432c0c | 2013-07-09 21:08:28 +0000 | [diff] [blame] | 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 { |
zachr@google.com | 1bc995e | 2013-07-12 13:39:53 +0000 | [diff] [blame] | 23 | border: 1px dotted black; |
zachr@google.com | 9432c0c | 2013-07-09 21:08:28 +0000 | [diff] [blame] | 24 | } |
| 25 | |
zachr@google.com | 1bc995e | 2013-07-12 13:39:53 +0000 | [diff] [blame] | 26 | .gm-image:hover { |
| 27 | border: 1px dashed black; |
| 28 | } |
| 29 | |
| 30 | .left-image { |
zachr@google.com | 9432c0c | 2013-07-09 21:08:28 +0000 | [diff] [blame] | 31 | float: right; |
| 32 | } |
| 33 | |
zachr@google.com | 1bc995e | 2013-07-12 13:39:53 +0000 | [diff] [blame] | 34 | .right-image { |
zachr@google.com | 9432c0c | 2013-07-09 21:08:28 +0000 | [diff] [blame] | 35 | text-align: right; |
| 36 | } |
| 37 | |
zachr@google.com | 6f8e2c5 | 2013-08-07 15:43:04 +0000 | [diff] [blame^] | 38 | .success-flash { |
| 39 | -webkit-animation-duration: 0.5s; |
| 40 | -webkit-animation-name: greenflash; |
| 41 | } |
| 42 | |
| 43 | .failure-flash { |
| 44 | -webkit-animation-duration: 0.8s; |
| 45 | -webkit-animation-name: redflash; |
| 46 | } |
| 47 | |
| 48 | @-webkit-keyframes greenflash { |
| 49 | from { |
| 50 | background-color: #8F8; |
| 51 | } |
| 52 | |
| 53 | to { |
| 54 | background-color: #FFF |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | @-webkit-keyframes redflash { |
| 59 | from { |
| 60 | background-color: #F88; |
| 61 | } |
| 62 | |
| 63 | to { |
| 64 | background-color: #FFF |
| 65 | } |
| 66 | } |
| 67 | |
zachr@google.com | 9432c0c | 2013-07-09 21:08:28 +0000 | [diff] [blame] | 68 | .result { |
| 69 | padding: 8px; |
| 70 | cursor: default; |
| 71 | opacity: 0.7; |
| 72 | } |
| 73 | |
| 74 | .result:hover { |
| 75 | border: 2px dotted #DDD; |
| 76 | padding: 6px; |
| 77 | opacity: 1.0; |
| 78 | } |
| 79 | |
| 80 | .result-0 { |
| 81 | background-color: #268bd2; |
| 82 | } |
| 83 | |
| 84 | .result-1 { |
| 85 | background-color: #d33682; |
| 86 | } |
| 87 | |
| 88 | .result-2 { |
| 89 | background-color: #b58900; |
| 90 | } |
| 91 | |
| 92 | .result-3 { |
| 93 | background-color: #cb4b16; |
| 94 | } |
| 95 | |
| 96 | .result-4 { |
| 97 | background-color: #6c71c4; |
| 98 | } |
| 99 | |
| 100 | .result-5 { |
| 101 | background-color: #dc322f; |
| 102 | } |
| 103 | |
| 104 | .result-6 { |
| 105 | background-color: #2aa198; |
| 106 | } |
| 107 | |
| 108 | .result-7 { |
| 109 | background-color: #859900; |
| 110 | } |