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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.css

Issue 2108963003: Initial draft of ChromeVox Next tutorial. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switched to use showNextUpdatePage Created 4 years, 5 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
OLDNEW
1 /* Copyright 2016 The Chromium Authors. All rights reserved. 1 /* Copyright 2016 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 body { 6 body {
7 border: 0; 7 border: 0;
8 height: 35px; 8 height: 35px;
9 margin: 0; 9 margin: 0;
10 overflow: hidden; 10 overflow: hidden;
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 margin: 0; 214 margin: 0;
215 padding: 0 18px; 215 padding: 0 18px;
216 } 216 }
217 217
218 .menu-item-shortcut { 218 .menu-item-shortcut {
219 border: 0; 219 border: 0;
220 margin: 0; 220 margin: 0;
221 padding: 0 18px 0 24px; 221 padding: 0 18px 0 24px;
222 text-align: right; 222 text-align: right;
223 } 223 }
224
225 #tutorial {
226 background: linear-gradient(to bottom,
227 rgba(255, 255, 255, 1) 40%,
228 rgba(215, 215, 215, 1) 100%);
229 bottom: 0;
230 left: 0;
231 position: fixed;
232 right: 0;
233 top: 0;
234 }
235
236 #tutorial_logo {
237 background-image: url(/images/chromevox.svg);
238 background-repeat: no-repeat;
239 background-size: contain;
240 bottom: 15%;
241 left: 10%;
242 position: fixed;
243 right: 70%;
244 top: 15%;
245 }
246
247 #close_tutorial {
248 background-image: url(/images/close-19.png);
249 height: 19px;
250 position: fixed;
251 right: 0;
252 top: 0;
253 width: 19px;
254 }
255
256 #close:hover {
257 background-image: url(/images/close-hover-19.png);
258 }
259
260 #tutorial_main {
261 bottom: 30%;
262 left: 35%;
263 overflow-x: hidden;
264 overflow-y: auto;
265 position: fixed;
266 right: 15%;
267 top: 15%;
268 }
269
270 #tutorial_main h2 {
271 font-family: 'Roboto', sans-serif;
272 font-size: 30pt;
273 font-weight: bold;
274 }
275
276 #tutorial_main p,
277 #tutorial_main a {
278 display: block;
279 font-family: 'Roboto', sans-serif;
280 font-size: 16pt;
281 line-height: 150%;
282 }
283
284 #tutorial_footer {
285 display: flex;
286 justify-content: center;
287 left: 35%;
288 position: fixed;
289 right: 15%;
290 top: 75%;
291 }
292
293 #tutorial_footer button {
294 background-color: #fff;
295 border: 1px solid #000;
296 font-family: 'Roboto', sans-serif;
297 font-size: 20pt;
298 height: 2em;
299 margin: 0 24px;
300 width: 8em;
301 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698