OLD | NEW |
---|---|
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 * { | 5 * { |
6 box-sizing: border-box; | 6 box-sizing: border-box; |
7 color: rgba(0, 0, 0, .87); | 7 color: rgba(0, 0, 0, .87); |
8 font-family: Helvetica, sans-serif; | 8 font-family: Helvetica, sans-serif; |
9 font-size: 14px; | 9 font-size: 14px; |
10 margin: 0; | 10 margin: 0; |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
68 margin: 60px 60px auto 60px; | 68 margin: 60px 60px auto 60px; |
69 } | 69 } |
70 | 70 |
71 .close { | 71 .close { |
72 background: url(../images/bt-close-1x.png); | 72 background: url(../images/bt-close-1x.png); |
73 float: right; | 73 float: right; |
74 height: 60px; | 74 height: 60px; |
75 width: 60px; | 75 width: 60px; |
76 } | 76 } |
77 | 77 |
78 .speech-close { | |
79 background: url(../images/bt-close-1x.png); | |
80 float: right; | |
81 height: 60px; | |
82 width: 60px; | |
83 } | |
84 | |
78 | 85 |
79 button.grayed-out { | 86 .buttonbar button.grayed-out { |
80 color: rgba(0, 0, 0, .28); | 87 color: rgba(0, 0, 0, .28); |
88 text-transform: initial; | |
Dan Beam
2014/10/23 23:56:01
nit: i guess this is OK but I'd say "none" is more
kcarattini
2014/10/24 07:02:42
Done.
| |
81 } | 89 } |
82 | 90 |
83 .col-3 { | 91 .col-3 { |
84 color: rgba(0, 0, 0, .54); | 92 color: rgba(0, 0, 0, .54); |
85 line-height: 24px; | 93 line-height: 24px; |
86 width: 504px; | 94 width: 504px; |
87 } | 95 } |
88 | 96 |
89 .col-3 h4 { | 97 .col-3 h4 { |
90 line-height: 100%; | 98 line-height: 100%; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
173 } | 181 } |
174 | 182 |
175 .train.recorded .text { | 183 .train.recorded .text { |
176 color: rgba(66, 133, 244, 1); | 184 color: rgba(66, 133, 244, 1); |
177 } | 185 } |
178 | 186 |
179 .train.error .text { | 187 .train.error .text { |
180 color: rgb(213, 0, 0); | 188 color: rgb(213, 0, 0); |
181 } | 189 } |
182 | 190 |
191 @-webkit-keyframes rotate { | |
192 from { -webkit-transform: rotate(0); | |
Dan Beam
2014/10/23 23:56:01
from { ... }
to { ... }
OR
from {
...
}
to
kcarattini
2014/10/24 07:02:42
Done.
| |
193 } | |
194 to { -webkit-transform: rotate(359deg); | |
195 } | |
196 } | |
197 | |
183 .train.listening .icon { | 198 .train.listening .icon { |
199 -webkit-animation-duration: 2s; | |
200 -webkit-animation-iteration-count: infinite; | |
201 -webkit-animation-name: rotate; | |
202 -webkit-animation-timing-function: linear; | |
184 background: url(../images/placeholder-loader-1x.png) no-repeat; | 203 background: url(../images/placeholder-loader-1x.png) no-repeat; |
185 } | 204 } |
186 | 205 |
187 .train.not-started .icon { | 206 .train.not-started .icon { |
188 background: url(../images/ic-check-gray-1x.png) no-repeat; | 207 background: url(../images/ic-check-gray-1x.png) no-repeat; |
189 } | 208 } |
190 | 209 |
191 .train.recorded .icon { | 210 .train.recorded .icon { |
192 background: url(../images/ic-check-blue-1x.png) no-repeat; | 211 background: url(../images/ic-check-blue-1x.png) no-repeat; |
193 } | 212 } |
(...skipping 26 matching lines...) Expand all Loading... | |
220 width: 24px; | 239 width: 24px; |
221 } | 240 } |
222 | 241 |
223 .check .text { | 242 .check .text { |
224 color: rgba(0, 0, 0, .54); | 243 color: rgba(0, 0, 0, .54); |
225 display: inline-block; | 244 display: inline-block; |
226 height: 24px; | 245 height: 24px; |
227 line-height: 24px; | 246 line-height: 24px; |
228 vertical-align: top; | 247 vertical-align: top; |
229 } | 248 } |
OLD | NEW |