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

Unified Diff: remoting/webapp/me2mom/main.css

Issue 7078022: Fix up remoting UI to make it closer to spec (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: turned on strict Created 9 years, 7 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: remoting/webapp/me2mom/main.css
diff --git a/remoting/webapp/me2mom/main.css b/remoting/webapp/me2mom/main.css
index ffee767e138d1d977cfaa3a8d4b4b23933b0cf1f..913823247ca0d507e65fae957785af7396672e81 100644
--- a/remoting/webapp/me2mom/main.css
+++ b/remoting/webapp/me2mom/main.css
@@ -4,26 +4,103 @@
*/
body {
- font-family: Helvetica, sans-serif;
+ background: -webkit-gradient(radial, center center, 0, center center, 400,
+ from(rgb(254, 254, 254)),
+ to(rgb(239, 239, 239)));
+ font-family: 'Droid Sans', Arial, sans-serif;
cursor: default;
+ padding:0;
+ margin:0;
+}
+
+#auth_panel {
+ border-bottom: 2px solid gray;
+ padding: 5px 10px;
+ background-color:rgba(0, 102 , 204, 0.15);
+}
+
+#container {
font-size: 13px;
+ color: rgb(115, 115, 115);
+ padding: 10px;
+ width: 640px;
+ margin: 100px auto 0 auto;
+ font-size: 16px;
+}
+
+#email_div {
+ display: inline-block;
}
-p {
+#current_email {
+ color: rgba(0, 0, 0, 0.5);
+}
+
+#oauth2_div {
+ width: 400px;
+ display: inline-block;
+}
+
+form {
+ display: inline;
+}
+
+header h1 {
+ font-size: 24px;
+ font-weight: normal;
+ margin-left: 10px;
+}
+
+footer {
+ text-align: center;
+}
+
+label {
color: black;
+ font-weight: bold;
+}
+
+#codeentryrow {
+ text-align: center;
}
-h1 {
- font-family: sans-serif;
- font-size: 2em;
+#access_code_entry {
font-weight: bold;
- margin: 2px 5px 5px 5px
+ font-size: 18px;
+ height: 25px;
+ width: 12em;
+ padding-left: 5px;
+ margin: 0 10px;
+}
+
+.secondary {
+ font-size: 14px;
+}
+
+.iconlabel {
+ display: inline-block;
+ vertical-align: top;
}
.message {
- font-family: sans-serif;
- font-size: 1.2em;
- padding: 0 4px 0 4px;
+ text-align:center;
+}
+
+#contents {
+ font-size: 16px;
+}
+
+#dividertop {
+ margin: 10px 0 15px 0;
+}
+
+#dividerbottom {
+ margin: 25px 0 25px 0;
+}
+
+a {
+ color: rgb(0, 102, 204);
+ text-decoration: none;
}
.mock {
@@ -31,19 +108,13 @@ h1 {
}
#access_code_display {
- font-family: sans-serif;
font-size: 200%;
- margin: 0 0 0 24px;
+ margin: 0 auto 0 auto;
padding: 0 4px 0 4px;
border-style: solid;
background-color: lightgray;
- display: inline-block;
-}
-
-.hostlist {
- margin: 0;
- border: #D9D9D9 1px solid;
- border-radius: 2px;
+ text-align: center;
+ width: 350px;
}
.remoting_body {
@@ -53,8 +124,26 @@ h1 {
overflow: auto;
}
-.status_msg {
+#status_msg_padding {
+ height: 1.5em;
+}
+
+#status_msg_div {
+ height: 1.5em;
+ border-bottom: solid 1px black;
+ position: fixed;
+ width: 100%;
+ background-color: white;
+ left: 0px;
+ top: 0px;
+ z-index: 100;
+}
+
+#status_msg {
margin: 5px;
+ font-family: monospace;
+ font-size: small;
+ clear: both;
}
.debug_log {
@@ -73,20 +162,18 @@ h1 {
display: none;
opacity: 0.9;
background-color: #ffffff;
- z-index: 1;
+ z-index: 100;
}
.debug_log_toggle {
- line-height: 0.8em;
float: right;
}
.scale_to_fit_toggle {
- line-height: 0.8em;
float: right;
}
-.plugin-scroll-panel {
+#plugin_scroll_panel {
-webkit-user-select: none;
overflow: auto;
width: 100%;
@@ -139,11 +226,12 @@ button {
-webkit-user-select: none;
background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
border: 1px solid #aaa;
- color: #444;
- font-size: inherit;
- margin-bottom: 0px;
- min-width: 4em;
- padding: 3px 12px 3px 12px;
+ height: 32px;
+ font-size: 16px;
+ padding: 6px;
+ margin: 50px auto 25px auto;
+ display: block;
+
}
button:hover {

Powered by Google App Engine
This is Rietveld 408576698