summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_variables.scss
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-06-14 23:53:32 -0800
committer=Corey Hulen <corey@hulen.com>2015-06-14 23:53:32 -0800
commitcf7a05f80f68b5b1c8bcc0089679dd497cec2506 (patch)
tree70007378570a6962d7c175ca96af732b71aeb6da /web/sass-files/sass/partials/_variables.scss
downloadchat-cf7a05f80f68b5b1c8bcc0089679dd497cec2506.tar.gz
chat-cf7a05f80f68b5b1c8bcc0089679dd497cec2506.tar.bz2
chat-cf7a05f80f68b5b1c8bcc0089679dd497cec2506.zip
first commit
Diffstat (limited to 'web/sass-files/sass/partials/_variables.scss')
-rw-r--r--web/sass-files/sass/partials/_variables.scss16
1 files changed, 16 insertions, 0 deletions
diff --git a/web/sass-files/sass/partials/_variables.scss b/web/sass-files/sass/partials/_variables.scss
new file mode 100644
index 000000000..eb1f3eef3
--- /dev/null
+++ b/web/sass-files/sass/partials/_variables.scss
@@ -0,0 +1,16 @@
+@function em($pixels, $context: 14px) {
+ @return #{$pixels/$context}em
+}
+
+// Color Variables
+$primary-color: #2389D7;
+$primary-color--hover: darken(#2389D7, 5%);
+$body-bg: #e9e9e9;
+$header-bg: #f9f9f9;
+$border-gray: 1px solid #ddd;
+
+// Animation
+.glyphicon-refresh-animate {
+ -animation: spin .7s infinite linear;
+ -webkit-animation: spin2 .7s infinite linear;
+} \ No newline at end of file