Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Side by Side Diff: chrome/browser/resources/hotword_audio_verification/style.css

Issue 521483003: Hotword Audio Verification App: Adds hotwording assets and basic opt-in flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review Comments addressed Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/resources/hotword_audio_verification/steps/speech_training_step.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 * found in the LICENSE file. */
4
5 * {
6 box-sizing: border-box;
7 color: rgba(0, 0, 0, .87);
8 font-family: Helvetica, sans-serif;
9 font-size: 14px;
10 margin: 0;
11 padding: 0;
12 }
13
14 a {
15 color: rgb(67, 133, 244);
16 text-decoration: none;
17 }
18
19 body {
20 background: #ddd;
21 }
22
23 h1 {
24 font-size: 34px;
25 font-weight: normal;
26 line-height: 40px;
27 }
28
29 h2 {
30 font-size: 16px;
31 font-weight: normal;
32 }
33
34 h4 {
35 font-size: 14px;
36 }
37
38 div.container {
39 background: #fff;
40 box-shadow: 0 0 30px rgba(0,0,0,0.3);
Matt Giuca 2014/09/01 12:35:00 nit: spaces between commas (and many instances thr
kcarattini 2014/09/02 04:37:23 Done.
41 height: 600px;
42 width: 800px;
43 }
44
45 div.header {
46 background: url(../images/header-optin-1x.png) no-repeat;
47 height: 240px;
48 vertical-align: bottom;
49 }
50
51 div.header-text {
52 height: 240px;
53 padding: 60px;
54 }
55
56 div.header-text h1 {
57 color: #fff;
58 margin-top: 44px;
59 }
60
61 div.header-text h2 {
62 color: #fff;
63 margin-top: 20px;
64 }
65
66 div.content {
67 height: 240px;
68 margin: 60px 60px auto 60px;
69 }
70
71 .close {
72 background: url(../images/bt-close-1x.png);
73 float: right;
74 height: 60px;
75 width: 60px;
76 }
77
78
79 button.grayed-out {
80 color: rgba(0,0,0,.28);
81 }
82
83 .col-3 {
84 color: rgba(0,0,0,.54);
85 line-height: 24px;
86 width: 504px;
87 }
88
89 .col-3 h4 {
90 line-height: 100%;
91 margin-bottom: 27px;
92 }
93
94 .col-2 {
95 color: rgba(0,0,0,.54);
96 float: left;
97 line-height: 24px;
98 width: 332px;
99 }
100
101 .col-2 h4 {
102 line-height: 100%;
103 margin-top: 27px;
104 }
105
106 .col-spacing {
107 float: left;
108 height: 160px;
109 width: 16px;
110 }
111
112 a.link-button {
113 display: inline-block;
114 font-size: 14px;
115 margin-top: 22px;
116 text-decoration: none;
117 text-transform: uppercase;
118 }
119
120 div.buttonbar {
121 background: rgba(0,0,0,.06);
122 height: 60px;
123 padding: 12px 60px;
124 }
125
126 .buttonbar button {
127 background: none;
128 border: none;
129 border-radius: 2px;
130 float: right;
131 height: 36px;
132 margin-left: 8px;
133 min-width: 88px;
134 padding: 8px;
135 text-transform: uppercase;
136 }
137
138 button.primary {
139 color: rgb(67, 133, 244);
140 }
141
142 .v-spacing-for-no-subheading {
143 height: 43px;
144 }
145
146 .train {
147 clear: both;
148 margin-bottom: 24px;
149 }
150
151 .train .icon {
152 display: inline-block;
153 height: 24px;
154 margin-right: 16px;
155 vertical-align: top;
156 width: 24px;
157 }
158
159 .train .text {
160 display: inline-block;
161 line-height: 24px;
162 vertical-align: top;
163 width: 292px;
164 }
165
166 .train.listening .text {
167 color: rgba(0,0,0,.87);
168 }
169
170 .train.not-started .text {
171 color: rgba(0,0,0,.54);
172 }
173
174 .train.recorded .text {
175 color: rgba(66,133,244,1);
176 }
177
178 .train.error .text {
179 color: rgb(213, 0, 0);
180 }
181
182 .train.listening .icon {
183 background: url(../images/placeholder-loader-1x.png) no-repeat;
184 }
185
186 .train.not-started .icon {
187 background: url(../images/ic-check-gray-1x.png) no-repeat;
188 }
189
190 .train.recorded .icon {
191 background: url(../images/ic-check-blue-1x.png) no-repeat;
192 }
193
194 .train.error .icon {
195 background: url(../images/placeholder-loader-error-1x.png) no-repeat;
196 }
197
198 .mic {
199 background: url(../images/mic-1x.png) no-repeat;
200 height: 80px;
201 left: 666px;
202 position: absolute;
203 top: 200px;
204 width: 80px;
205 }
206
207 .check {
208 clear: both;
209 height: 24px;
210 margin-bottom: 24px;
211 }
212
213 .check .icon {
214 background: url(../images/ic-check-blue-1x.png) no-repeat;
215 display: inline-block;
216 height: 24px;
217 margin-right: 16px;
218 vertical-align: top;
219 width: 24px;
220 }
221
222 .check .text {
223 color: rgba(0,0,0,.54);
224 display: inline-block;
225 height: 24px;
226 line-height: 24px;
227 vertical-align: top;
228 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/hotword_audio_verification/steps/speech_training_step.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698