summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/generic/flash.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/generic/flash.scss')
-rw-r--r--app/assets/stylesheets/generic/flash.scss25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/assets/stylesheets/generic/flash.scss b/app/assets/stylesheets/generic/flash.scss
new file mode 100644
index 00000000000..95d28aaef6c
--- /dev/null
+++ b/app/assets/stylesheets/generic/flash.scss
@@ -0,0 +1,25 @@
+.flash-container {
+ display: none;
+ cursor: pointer;
+ margin: 0;
+ text-align: center;
+ color: #fff;
+ font-size: 14px;
+ position: fixed;
+ bottom: 0;
+ width: 100%;
+ opacity: 0.8;
+ z-index: 100;
+
+ .flash-notice {
+ background: #49C;
+ padding: 10px;
+ text-shadow: 0 1px 1px #178;
+ }
+
+ .flash-alert {
+ background: #C67;
+ text-shadow: 0 1px 1px #945;
+ padding: 10px;
+ }
+}