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

Side by Side Diff: chrome/browser/resources/pdf/elements/viewer-password-screen/viewer-password-screen.css

Issue 853603002: Merge html-office-public repo into src (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 2015 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 background-color: #ccc;
8 color: #555;
9 display: table;
10 font-family: sans-serif;
11 font-size: 15px;
12 height: 100%;
13 pointer-events: none;
14 position: fixed;
15 text-align: center;
16 width: 100%;
17 }
18
19 #message {
20 padding-bottom: 10px;
21 }
22
23 .center {
24 display: table-cell;
25 vertical-align: middle;
26 }
27
28 .form {
29 border: 1px solid #777;
30 box-shadow: 1px 1px 1px;
31 display: inline-block;
32 padding: 10px;
33 width: 300px;
34 }
35
36 input {
37 color: #333;
38 pointer-events: all;
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698