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

Side by Side Diff: elements/viewer-password-screen/viewer-password-screen.css

Issue 169403008: Add a <viewer-password-screen> element. (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 :host {
2 -webkit-transition: opacity 400ms ease-in-out;
3 background-color: #ccc;
4 color: #555;
5 display: table;
6 font-family: sans-serif;
7 font-size: 15px;
8 height: 100%;
9 pointer-events: none;
10 position: fixed;
11 text-align: center;
12 width: 100%;
13 }
14
15 #message {
16 padding-bottom: 10px;
17 }
18
19 .center {
20 display: table-cell;
21 vertical-align: middle;
22 }
23
24 .form {
25 border: 1px solid #777;
26 box-shadow: 1px 1px 1px;
27 display: inline-block;
28 padding: 10px;
29 width: 300px;
30 }
31
32 #successMessage {
33 display: inline-block;
34 padding-left: 5px;
35 pointer-events: none;
36 }
37
38 input {
39 color: #333;
40 pointer-events: all;
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698