summaryrefslogtreecommitdiffstats
path: root/theme/stylesheets/website/alerts.less
diff options
context:
space:
mode:
Diffstat (limited to 'theme/stylesheets/website/alerts.less')
-rw-r--r--theme/stylesheets/website/alerts.less31
1 files changed, 31 insertions, 0 deletions
diff --git a/theme/stylesheets/website/alerts.less b/theme/stylesheets/website/alerts.less
new file mode 100644
index 0000000..22fc863
--- /dev/null
+++ b/theme/stylesheets/website/alerts.less
@@ -0,0 +1,31 @@
+.alert {
+ padding: 15px;
+ margin-bottom: 20px;
+ color: #444;
+ background: #eee;
+ border-bottom: 5px solid #ddd;
+}
+
+.alert-success {
+ background: @state-success-bg;
+ border-color: @state-success-border;
+ color: @state-success-text;
+}
+
+.alert-info {
+ background: @state-info-bg;
+ border-color: @state-info-border;
+ color: @state-info-text;
+}
+
+.alert-danger {
+ background: @state-danger-bg;
+ border-color: @state-danger-border;
+ color: @state-danger-text;
+}
+
+.alert-warning {
+ background: @state-warning-bg;
+ border-color: @state-warning-border;
+ color: @state-warning-text;
+}