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

Unified Diff: chrome/browser/resources/new_profile.css

Issue 7256002: Multi-Profiles: New Profile Setup UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: show product logo at bottom Created 9 years, 6 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 side-by-side diff with in-line comments
Download patch
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..808cb40d214595d372e05b99983dd4dc07132db6
--- /dev/null
+++ b/chrome/browser/resources/new_profile.css
@@ -0,0 +1,76 @@
+html {
+ font-family: segoe ui, arial, helvetica, sans-serif;
+ font-size: 13px;
+}
+
+#avatar-menu {
+ width: 337px;
+ height: 150px;
+ overflow: auto;
+ border: 1px solid rgba(0, 0, 0, 0.3);
+ background-color: rgba(255, 255, 255, 0.75);
+}
+
+.avatar-button {
+ width: 38px;
+ height: 38px;
+ padding: 4px;
+}
+
+#profile-name {
+ font-size: 125%;
+}
+
+div.page > h3 {
+ font-size: 105%;
+ font-weight: bold;
+ color: rgb(75, 75, 75);
+}
+
+div > p {
+ color: rgb(75, 75, 75);
+}
+
+.page * input[type="button"],
+.page * input[type="button"] {
+ min-height: 26px;
+ min-width: 87px;
+}
+
+.overlay {
+ -webkit-box-align: center;
+ -webkit-box-pack: center;
+ bottom: 0;
+ display: -webkit-box;
+ left: 0;
+ padding: 20px;
+ padding-bottom: 130px;
+ position: fixed;
+ right: 0;
+ top: 0;
+ background: -webkit-linear-gradient(white, rgb(235, 235, 235));
+}
+
+.overlay .page {
+ min-width: 400px;
+ position: relative;
+}
+
+#new-profile-overlay {
+ width: 500px;
+}
+
+#footer {
+ bottom: 0;
+ position: fixed;
+ width: 100%;
+}
+
+#footer-content {
+ display: -webkit-box;
+ height: 49px;
+ -webkit-box-align: center;
+}
+#footer-content > * {
+ margin: 0 9px;
+}

Powered by Google App Engine
This is Rietveld 408576698