blob: e172667061296b00a6f94893a1c0a23be968381c [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
zachr@google.com74c5ab12013-08-07 18:06:39 +000022button {
23 font-family: Verdana;
24 font-weight: 900;
25}
26
27input[type="checkbox"] {
28 -webkit-appearance: none;
29 -moz-appearance: none;
30 width: 20px;
31 height:20px;
32 padding: 2px;
33 background: #EEE;
34 border-radius: 2px;
35 box-shadow: inset 0 0 8px -2px black;
36}
37
38input[type="checkbox"]:checked {
39 background: #a9db80;
40 background: -webkit-linear-gradient(top, #00b7ea 0%,#009ec3 100%);
41}
42
43input[type="checkbox"]:active {
44 background: #a9db80;
45 background: -webkit-linear-gradient(top, #009ec3 0%,#00b7ea 100%);
46}
47
48input[type="checkbox"].lastselected {
49 padding: 0;
50 border: 2px solid #009ec3;
51 box-shadow: inset 0 0 8px -2px black, 0 0 6px black;
52}
53
54.commit {
55 position: absolute;
56 top: 8px;
57 right: 8px;
58}
59
60.commit > button {
61 border: 1px solid #00687F;
62 border-radius: 4px;
63 padding: 8px;
64 color: white;
65 text-shadow: 0 0 4px black;
66 box-shadow: 0 0 8px black;
67 background: #a9db80;
68 background: -webkit-linear-gradient(top, #a9db80 0%,#96c56f 100%);
69}
70
71.commit > button:active {
72 background: #96c56f;
73 background: -webkit-linear-gradient(top, #96c56f 0%,#a9db80 100%);
74}
75
zachr@google.com9432c0c2013-07-09 21:08:28 +000076.gm-image {
zachr@google.com1bc995e2013-07-12 13:39:53 +000077 border: 1px dotted black;
zachr@google.com9432c0c2013-07-09 21:08:28 +000078}
79
zachr@google.com1bc995e2013-07-12 13:39:53 +000080.gm-image:hover {
81 border: 1px dashed black;
82}
83
zachr@google.com74c5ab12013-08-07 18:06:39 +000084.selected {
85 background: #ffff88;
86}
87
zachr@google.com1bc995e2013-07-12 13:39:53 +000088.left-image {
zachr@google.com9432c0c2013-07-09 21:08:28 +000089 float: right;
90}
91
zachr@google.com1bc995e2013-07-12 13:39:53 +000092.right-image {
zachr@google.com9432c0c2013-07-09 21:08:28 +000093 text-align: right;
94}
95
zachr@google.com6f8e2c52013-08-07 15:43:04 +000096.success-flash {
97 -webkit-animation-duration: 0.5s;
98 -webkit-animation-name: greenflash;
99}
100
101.failure-flash {
102 -webkit-animation-duration: 0.8s;
103 -webkit-animation-name: redflash;
104}
105
106@-webkit-keyframes greenflash {
107 from {
108 background-color: #8F8;
109 }
110
111 to {
112 background-color: #FFF
113 }
114}
115
116@-webkit-keyframes redflash {
117 from {
118 background-color: #F88;
119 }
120
121 to {
122 background-color: #FFF
123 }
124}
125
zachr@google.com9432c0c2013-07-09 21:08:28 +0000126.result {
127 padding: 8px;
128 cursor: default;
zachr@google.com74c5ab12013-08-07 18:06:39 +0000129 -webkit-filter: grayscale(30%)
zachr@google.com9432c0c2013-07-09 21:08:28 +0000130}
131
132.result:hover {
133 border: 2px dotted #DDD;
134 padding: 6px;
zachr@google.com74c5ab12013-08-07 18:06:39 +0000135 -webkit-filter: grayscale(0)
zachr@google.com9432c0c2013-07-09 21:08:28 +0000136}
137
138.result-0 {
139 background-color: #268bd2;
140}
141
142.result-1 {
143 background-color: #d33682;
144}
145
146.result-2 {
147 background-color: #b58900;
148}
149
150.result-3 {
151 background-color: #cb4b16;
152}
153
154.result-4 {
155 background-color: #6c71c4;
156}
157
158.result-5 {
159 background-color: #dc322f;
160}
161
162.result-6 {
163 background-color: #2aa198;
164}
165
166.result-7 {
167 background-color: #859900;
168}