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

Side by Side Diff: chrome/browser/resources/md_user_manager/supervised_user_learn_more.css

Issue 1630903002: material design user manager with create profile flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Dan's comments #2 Created 4 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
1 /* Copyright 2014 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 #supervised-user-learn-more { 5 #container {
6 background-color: white;
6 display: flex; 7 display: flex;
7 flex-direction: column; 8 flex-direction: column;
8 width: 722px; 9 margin: 0 auto;
10 max-width: 722px;
9 } 11 }
10 12
11 #supervised-user-learn-more-title { 13 #supervised-user-learn-more-title {
12 padding: 20px; 14 padding: 20px;
13 } 15 }
14 16
15 #supervised-user-learn-more-text { 17 #supervised-user-learn-more-text {
16 padding: 0 20px 0 20px; 18 padding: 0 20px 0 20px;
17 white-space: pre-wrap; 19 white-space: pre-wrap;
18 word-wrap: break-word; 20 word-wrap: break-word;
(...skipping 13 matching lines...) Expand all
32 url(../../../../ui/resources/default_100_percent/supervised_illustration_s tart.png) 1x, 34 url(../../../../ui/resources/default_100_percent/supervised_illustration_s tart.png) 1x,
33 url(../../../../ui/resources/default_200_percent/supervised_illustration_s tart.png) 2x); 35 url(../../../../ui/resources/default_200_percent/supervised_illustration_s tart.png) 2x);
34 background-position: center; 36 background-position: center;
35 border-radius: 3px 3px 0 0; 37 border-radius: 3px 3px 0 0;
36 height: 344px; 38 height: 344px;
37 } 39 }
38 40
39 #supervised-user-learn-more-action-area { 41 #supervised-user-learn-more-action-area {
40 padding: 20px; 42 padding: 20px;
41 } 43 }
44
45 paper-button {
46 border-radius: 2px;
47 font-size: 13px;
48 line-height: 32px;
49 min-width: 52px;
50 padding: 0 16px;
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698