OLD | NEW |
---|---|
(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 body { | |
6 font-family: 'Roboto', 'Helvetica Neue', 'Lucida Grande', sans-serif; | |
Dan Beam
2016/01/21 03:57:33
you should still be using text_defaults.css for di
anthonyvd
2016/01/21 22:36:11
It looks like using text_defaults_md.css does the
| |
7 margin: 0; | |
8 padding: 0; | |
9 } | |
10 | |
11 a { | |
12 color: rgb(85, 149, 254); | |
13 text-decoration: none; | |
14 } | |
15 | |
16 .picture img { | |
17 border-radius: 50%; | |
18 max-height: 100%; | |
19 max-width: 100%; | |
20 } | |
21 | |
22 .container { | |
23 background-color: white; | |
24 height: 351px; | |
25 overflow: hidden; | |
26 width: 448px; | |
27 } | |
28 | |
29 .top-title-bar { | |
30 align-items: center; | |
31 border-bottom: 1px solid lightgray; | |
32 color: #333; | |
33 display: flex; | |
34 font-size: 1em; | |
35 height: 56px; | |
36 padding-left: 24px; | |
37 padding-right: 24px; | |
Dan Beam
2016/01/22 01:26:57
note: this was adding left/right padding at both e
anthonyvd
2016/01/22 17:19:56
Acknowledged.
| |
38 } | |
39 | |
40 .details { | |
41 height: 250px; | |
42 padding: 20px 24px; | |
43 } | |
44 | |
45 .sync-message { | |
46 color: #595959; | |
47 font-size: 0.8125em; | |
48 line-height: 150%; | |
49 padding-bottom: 32px; | |
50 } | |
51 | |
52 .picture-container { | |
53 align-items: center; | |
54 display: flex; | |
55 justify-content: center; | |
56 padding-bottom: 32px; | |
57 } | |
58 | |
59 .picture { | |
60 height: 96px; | |
61 position: relative; | |
62 width: 96px; | |
63 } | |
64 | |
65 #profile-picture, | |
66 .checkmark-bubble { | |
67 position: absolute; | |
68 } | |
69 | |
70 .checkmark-bubble { | |
71 background-color: white; | |
72 background-image: url(//resources/images/check_circle.svg); | |
73 background-size: 100%; | |
74 border: 1px solid white; | |
75 border-radius: 50%; | |
76 display: inline-block; | |
77 height: 30px; | |
78 left: 64px; | |
79 top: 66px; | |
80 width: 30px; | |
81 } | |
82 | |
83 .action-container { | |
84 align-items: baseline; | |
85 display: flex; | |
86 justify-content: flex-end; | |
87 } | |
88 | |
89 paper-button { | |
90 font-size: 0.8125em; | |
91 padding-left: 12px; | |
92 padding-right: 12px; | |
93 } | |
94 | |
95 #confirmButton { | |
96 background-color: rgb(66, 133, 244); | |
97 color: white; | |
98 } | |
99 | |
100 #undoButton { | |
101 color: #5A5A5A; | |
102 } | |
OLD | NEW |