aboutsummaryrefslogtreecommitdiffstats
path: root/static/css/login.css
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-08-04 10:11:24 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-08-04 10:11:24 +0300
commit63b0fc6269b38edf7234b9f151b80d81f614c0a3 (patch)
tree555de3068f33f8dddb4619349bbea7d9b7c822fd /static/css/login.css
downloadServo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.gz
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.bz2
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.zip
Initial commit
First public commit
Diffstat (limited to 'static/css/login.css')
-rwxr-xr-xstatic/css/login.css31
1 files changed, 31 insertions, 0 deletions
diff --git a/static/css/login.css b/static/css/login.css
new file mode 100755
index 0000000..11363b3
--- /dev/null
+++ b/static/css/login.css
@@ -0,0 +1,31 @@
+/**
+ * servo/login.css
+ */
+body {
+ background-color: #f5f5f5;
+}
+form {
+ margin-left: 10px;
+ margin-top: 30px;
+}
+
+.login-container {
+ margin: auto;
+ position: absolute;
+ top: 0; left: 0; bottom: 0; right: 0;
+ width: 250px; height: 250px;
+ padding: 70px;
+ background-color: #fff;
+ border: 1px solid #e5e5e5;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+ -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
+ -moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
+ box-shadow: 0 1px 2px rgba(0,0,0,.05);
+}
+
+.servo-logo {
+ width: 251px;
+ display: block;
+}