blob: 81b4f906c99b31e333c2a3bf4523d40bca2a51a8 [file] [log] [blame]
zachr@google.com9432c0c2013-07-09 21:08:28 +00001body, img, div {
2 font-family: Verdana;
3 margin: 0;
4 padding: 0;
5}
6
7table {
8 width:100%;
9 border-collapse: collapse;
10 border-spacing: 0;
11 padding: 8px;
12}
13
14td {
15 border-top: 1px solid #DDD;
16 padding: 8px;
17}
18thead > tr > td {
19 border: none;
20}
21
22.gm-image {
zachr@google.com1bc995e2013-07-12 13:39:53 +000023 border: 1px dotted black;
zachr@google.com9432c0c2013-07-09 21:08:28 +000024}
25
zachr@google.com1bc995e2013-07-12 13:39:53 +000026.gm-image:hover {
27 border: 1px dashed black;
28}
29
30.left-image {
zachr@google.com9432c0c2013-07-09 21:08:28 +000031 float: right;
32}
33
zachr@google.com1bc995e2013-07-12 13:39:53 +000034.right-image {
zachr@google.com9432c0c2013-07-09 21:08:28 +000035 text-align: right;
36}
37
zachr@google.com6f8e2c52013-08-07 15:43:04 +000038.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.com9432c0c2013-07-09 21:08:28 +000068.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}