| Index: chrome/browser/resources/new_profile.css
 | 
| diff --git a/chrome/browser/resources/new_profile.css b/chrome/browser/resources/new_profile.css
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..9165cd7409b972da1f18b99cb9b91c86206cd1d9
 | 
| --- /dev/null
 | 
| +++ b/chrome/browser/resources/new_profile.css
 | 
| @@ -0,0 +1,111 @@
 | 
| +/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
 | 
| + * Use of this source code is governed by a BSD-style license that can be
 | 
| + * found in the LICENSE file.
 | 
| + */
 | 
| +
 | 
| +html {
 | 
| +  font-family: 'segoe ui', 'arial', 'helvetica', 'sans-serif';
 | 
| +  font-size: 13px;
 | 
| +}
 | 
| +
 | 
| +#avatar-menu {
 | 
| +  background-color: rgba(255, 255, 255, 0.75);
 | 
| +  border: 1px solid rgba(0, 0, 0, 0.3);
 | 
| +  height: 150px;
 | 
| +  overflow: auto;
 | 
| +  width: 337px;
 | 
| +}
 | 
| +
 | 
| +.avatar-button {
 | 
| +  height: 38px;
 | 
| +  padding: 4px;
 | 
| +  width: 38px;
 | 
| +}
 | 
| +
 | 
| +.avatar-button-selected {
 | 
| +  background-color: #bbcee9;
 | 
| +}
 | 
| +
 | 
| +#profile-name {
 | 
| +  font-size: 125%;
 | 
| +}
 | 
| +
 | 
| +div.page > h3 {
 | 
| +  color: #4b4b4b
 | 
| +  font-size: 105%;
 | 
| +  font-weight: bold;
 | 
| +}
 | 
| +
 | 
| +div > p {
 | 
| +  color: #4b4b4b;
 | 
| +}
 | 
| +
 | 
| +.page * input[type="button"] {
 | 
| +  min-height: 26px;
 | 
| +  min-width: 87px;
 | 
| +}
 | 
| +
 | 
| +.overlay {
 | 
| +  background: -webkit-linear-gradient(white, #ebebeb);
 | 
| +  bottom: 0;
 | 
| +  left: 0;
 | 
| +  position: fixed;
 | 
| +  right: 0;
 | 
| +  top: 0;
 | 
| +}
 | 
| +
 | 
| +.action-area {
 | 
| +  -webkit-box-align: center;
 | 
| +  -webkit-box-orient: horizontal;
 | 
| +  -webkit-box-pack: end;
 | 
| +  display: -webkit-box;
 | 
| +  margin-top: 20px;
 | 
| +}
 | 
| +
 | 
| +.button-strip {
 | 
| +  -webkit-box-orient: horizontal;
 | 
| +  display: -webkit-box;
 | 
| +}
 | 
| +
 | 
| +html[toolkit=views] .button-strip {
 | 
| +  -webkit-box-direction: reverse;
 | 
| +}
 | 
| +
 | 
| +.button-strip > input {
 | 
| +  -webkit-margin-start: 10px;
 | 
| +  display: block;
 | 
| +}
 | 
| +
 | 
| +#new-profile-overlay {
 | 
| +  margin-left: auto;
 | 
| +  margin-right: auto;
 | 
| +  margin-top: 66px;
 | 
| +  padding: 10px;
 | 
| +  width: 500px;
 | 
| +}
 | 
| +
 | 
| +#footer {
 | 
| +  bottom: 0;
 | 
| +  position: fixed;
 | 
| +  width: 100%;
 | 
| +}
 | 
| +
 | 
| +#footer-content {
 | 
| +  -webkit-box-align: center;
 | 
| +  display: -webkit-box;
 | 
| +  height: 49px;
 | 
| +}
 | 
| +
 | 
| +#footer-content > * {
 | 
| +  margin: 0 9px;
 | 
| +}
 | 
| +
 | 
| +#outer-input-area {
 | 
| +  width: 100%;
 | 
| +  text-align: center;
 | 
| +}
 | 
| +
 | 
| +#inner-input-area {
 | 
| +  display: inline-block;
 | 
| +  text-align: left;
 | 
| +}
 | 
| 
 |