summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/_main.scss
diff options
context:
space:
mode:
authorFelix Hammerl <fhammerl@thoughtworks.com>2016-03-07 17:59:51 +0100
committerFelix Hammerl <fhammerl@thoughtworks.com>2016-03-09 16:11:38 +0100
commitd4822d8923c6e4535ee09eafb035f1b15742c637 (patch)
treea83d7b1c0032f2ce8377e19afc226fffc54b9259 /web-ui/app/scss/_main.scss
parent3994188a0e4d9468518132f179eb56fab7760fbe (diff)
Issue #620: Spike growl CSS modularization
Diffstat (limited to 'web-ui/app/scss/_main.scss')
-rw-r--r--web-ui/app/scss/_main.scss37
1 files changed, 37 insertions, 0 deletions
diff --git a/web-ui/app/scss/_main.scss b/web-ui/app/scss/_main.scss
new file mode 100644
index 00000000..b582a5d5
--- /dev/null
+++ b/web-ui/app/scss/_main.scss
@@ -0,0 +1,37 @@
+@import "compass/css3";
+@import "reset";
+@import "foundation";
+@import "colors";
+@import "mixins";
+@import "alerts";
+@import "read";
+@import "reply";
+@import "compose";
+@import "security";
+@import "mascot";
+@import "styles";
+
+html {
+ height:100%;
+}
+body {
+ min-height:100%;
+ overflow: hidden;
+ background: $white;
+}
+header#main {
+ overflow: hidden;
+ position: fixed;
+ top: 0;
+ width: 100%;
+ position: relative;
+ margin-bottom: 0;
+}
+
+.no-padding {
+ padding: 0;
+}
+
+.text-right {
+ text-align: right;
+}