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

Side by Side Diff: elements/viewer-page-indicator/viewer-page-indicator.css

Issue 152913003: Add page indicator and progress bar polymer elements (Closed) Base URL: https://chromium.googlesource.com/chromium/html-office-public.git@master
Patch Set: Created 6 years, 10 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
(Empty)
1 /* Copyright 2013 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 :host {
6 -webkit-transition: opacity 400ms ease-in-out;
7 position: fixed;
8 right: 0;
9 }
10
11 #text {
12 background-color: rgba(0, 0, 0, 0.5);
13 border-radius: 5px;
14 color: white;
15 float: left;
16 font-family: sans-serif;
17 font-size: 12px;
18 font-weight: bold;
19 line-height: 48px;
20 text-align: center;
21 text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
22 width: 62px;
23 }
24
25 #triangle-right {
26 border-bottom: 6px solid transparent;
27 border-left: 8px solid rgba(0, 0, 0, 0.5);
28 border-top: 6px solid transparent;
29 display: inline;
30 float: left;
31 height: 0;
32 margin-top: 18px;
33 width: 0;
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698