summaryrefslogtreecommitdiff
path: root/res/client/css/partials
diff options
context:
space:
mode:
authorgarbash <dor.garbash@gmail.com>2015-01-11 17:46:30 +0200
committergarbash <dor.garbash@gmail.com>2015-01-11 17:46:33 +0200
commit18e4e1c681df73f278ae90c987b9c30769de2d89 (patch)
tree55a247dc423774e527410a9c3da53a6cd1e3efd3 /res/client/css/partials
parentb234ba575952dd16aae9b4c3fe0b024d7a1a02dd (diff)
wip - login styling2
Diffstat (limited to 'res/client/css/partials')
-rw-r--r--res/client/css/partials/login.scss56
1 files changed, 56 insertions, 0 deletions
diff --git a/res/client/css/partials/login.scss b/res/client/css/partials/login.scss
index 7fbd5ce5..49926283 100644
--- a/res/client/css/partials/login.scss
+++ b/res/client/css/partials/login.scss
@@ -49,6 +49,62 @@
margin-left: 150px;
margin-right: 150px;
text-align: center;
+ padding: 20px;
+ width: 300px;
+ position: relative;
+}
+
+
+.clearfix {
+ *zoom: 1;
+
+ &:before,
+ &:after {
+ content: ' ';
+ display: table;
+ }
+
+ &:after {
+ clear: both;
+ }
+
+}
+
+.login-input {
+ border: none;
+ font-family: inherit;
+ font-size: inherit;
+ margin: 0;
+ -webkit-appearance: none;
+ &:focus {
+ outline: none;
+ }
+ &[type="submit"] {
+ cursor: pointer;
+ background: $magenta;
+ border-radius: 3px;
+ color: #fff;
+ float: right;
+ font-weight: bold;
+ margin-top: 20px;
+ padding: 12px 20px;
+ &:hover {
+ background: $dark-magenta;
+ }
+ }
+ &[type="email"] {
+ border: 1px solid #dcdcdc;
+ padding: 12px 10px;
+ width: 100%;
+ border-radius: 3px 3px 0 0;
+ }
+ &[type="password"] {
+ border: 1px solid #dcdcdc;
+ padding: 12px 10px;
+ width: 100%;
+ border-top: none;
+ border-radius: 0px 0px 3px 3px;
+ }
}
.forgot-password {