themes/iphone/login.css
changeset 44 92dd253f501c
child 47 b7f1952cef8d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/themes/iphone/login.css	Mon Sep 01 16:51:13 2008 -0400
@@ -0,0 +1,91 @@
+/**
+ * Based upon the AmaroK WebControl interface by:
+ *    Jonas Christian Drewsen ( kde at xspect dot dk )
+ *    André Kelpe ( fs111 at web dot de )
+ *    Peter C. Ndikuwera ( pndiku at gmail dot com )
+ */
+
+html, body {
+  margin: 0;
+  padding: 0;
+  height: 100%;
+  font-size: 120%;
+}
+
+body {
+  font-family: sans-serif;
+  background-color: #212251;
+  color: #ffffff;
+  padding: 0;
+}
+
+body > table {
+  width: 100%;
+  height: 100%;
+}
+
+div.login-main {
+  background-image: url(images/login.png);
+  width: 240px;
+  height: 276px;
+  margin: 0 auto;
+  padding: 40px;
+  background-position: center center;
+  background-repeat: no-repeat;
+}
+
+table.loginform {
+  margin: 0 auto;
+}
+
+table.loginform td {
+  padding-top: 20px;
+}
+
+table.loginform td.left {
+  width: 33%;
+  text-align: left;
+}
+
+table.loginform td.right {
+  width: 66%;
+  text-align: left;
+}
+
+table.loginform td.error, table.loginform td.success {
+  text-align: center;
+  color: #ff5321;
+  padding-top: 2px;
+}
+
+table.loginform td.success {
+  color: #53ff21;
+}
+
+table.loginform td.submit {
+  font-size: larger;
+  padding-top: 12px;
+}
+
+input {
+  border-width: 0px;
+  background-color: #b1b5cd;
+  padding: 2px;
+  color: #383f61;
+  width: 120px;
+  height: 28px;
+  font-size: 23px;
+}
+
+input.submit {
+  font-size: larger;
+  padding: 2px 5px;
+  height: 36px;
+  font-size: 24px;
+}
+
+input.submit:hover, input.submit:focus {
+  background-color: #b1b5cd;
+  cursor: pointer;
+}
+