summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/_alerts.scss
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/scss/_alerts.scss')
-rw-r--r--web-ui/app/scss/_alerts.scss14
1 files changed, 14 insertions, 0 deletions
diff --git a/web-ui/app/scss/_alerts.scss b/web-ui/app/scss/_alerts.scss
new file mode 100644
index 00000000..16171fd7
--- /dev/null
+++ b/web-ui/app/scss/_alerts.scss
@@ -0,0 +1,14 @@
+#user-alerts {
+ width: 100%;
+ margin: 10px auto;
+ position: fixed;
+ z-index: 10000;
+ text-align: center;
+ span {
+ background: $warning;
+ padding: 5px 60px;
+ border: 1px solid darken($warning, 10%);
+ color: darken($warning, 50%);
+ @include box-shadow(1px 1px 3px darken($warning, 60%));
+ }
+}