summaryrefslogtreecommitdiff
path: root/res/client/css/modules
diff options
context:
space:
mode:
authorOfer Lehr <ofer@oferlehr.com>2015-02-14 22:30:04 +0200
committerOfer Lehr <ofer@oferlehr.com>2015-02-14 22:30:04 +0200
commit3beb1bbd65e7b00ce78bf603ec69bcb387962886 (patch)
tree4f21d10e3c829b8706c12f8106a5d5a41420ee2c /res/client/css/modules
parent780766e75b0231520128aa892f5efc45b4bc30fb (diff)
some Improvements to login styling
made css more modular and improved styling of all elements in login page
Diffstat (limited to 'res/client/css/modules')
-rw-r--r--res/client/css/modules/colors.scss1
-rw-r--r--res/client/css/modules/mixins.scss6
2 files changed, 7 insertions, 0 deletions
diff --git a/res/client/css/modules/colors.scss b/res/client/css/modules/colors.scss
index 905d239d..f7d85d8a 100644
--- a/res/client/css/modules/colors.scss
+++ b/res/client/css/modules/colors.scss
@@ -1,3 +1,4 @@
+$white: white;
$light-grey: #f5f5fa;
$mid-light-grey: #d4d4d9;
$mid-grey: #919095;
diff --git a/res/client/css/modules/mixins.scss b/res/client/css/modules/mixins.scss
index 3c431be0..10ff7454 100644
--- a/res/client/css/modules/mixins.scss
+++ b/res/client/css/modules/mixins.scss
@@ -4,6 +4,12 @@
box-shadow: $offset-x $offset-y $blur $spread $color;
}
+@mixin rz-inset-box-shadow($offset-x, $offset-y, $blur, $color) {
+ -webkit-box-shadow: inset $offset-x $offset-y $blur $color;
+ -moz-box-shadow: inset $offset-x $offset-y $blur $color;
+ box-shadow: inset $offset-x $offset-y $blur $color;
+}
+
@mixin rz-box-sizing-border() {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;