Added login form
Change-Id: Ia297cfffdeb289363d9fee4e6751e9afa6a3f9d8
diff --git a/dev/scss/base.scss b/dev/scss/base.scss
index cbdc377..68854fb 100644
--- a/dev/scss/base.scss
+++ b/dev/scss/base.scss
@@ -1,6 +1,8 @@
@charset "utf-8";
@import "util";
+$border-size: 2px;
+
/**
* Basic global CSS rules for Kalamar
*/
@@ -41,6 +43,8 @@
position: relative;
min-height: 100%;
font-size: 12pt;
+ margin: 0;
+ padding: 0;
}
@@ -84,3 +88,50 @@
}
}
}
+
+button[type=submit] {
+ font-weight: normal;
+ @include choose-item;
+ padding: 0;
+ height: 100%;
+ top: 0;
+ width: $button-width;
+ cursor:pointer;
+ > span:nth-of-type(1) {
+ @include blind;
+ }
+ &::after {
+ font-family: "FontAwesome";
+ }
+ border: {
+ width: $border-size;
+ style: solid;
+ color: $nearly-white;
+ }
+ &:hover, &:focus {
+ @include choose-hover;
+ }
+ &::-moz-focus-inner {
+ border: none;
+ }
+ &:active {
+ @include choose-active;
+ }
+ /**
+ * This is just for styling the last button,
+ * in case there are more than one buttons.
+ */
+ &:last-of-type {
+ // @include box-sizing-box();
+ border: {
+ right-width: $border-size;
+ right-style: solid;
+ top-right-radius: $standard-border-radius;
+ bottom-right-radius: $standard-border-radius;
+ }
+ }
+}
+
+button + button {
+ right: 0;
+}