summaryrefslogtreecommitdiffstats
path: root/static/base/css/messages.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/base/css/messages.css')
-rw-r--r--static/base/css/messages.css53
1 files changed, 53 insertions, 0 deletions
diff --git a/static/base/css/messages.css b/static/base/css/messages.css
new file mode 100644
index 0000000..f7ec49c
--- /dev/null
+++ b/static/base/css/messages.css
@@ -0,0 +1,53 @@
+/* Harmonic Flow web site */
+/* Public domain 2017. All rights waived */
+
+.message-box {
+ box-shadow: inset 0px 0px 4px black;
+ color: #F5F5F5;
+ padding: 10px;
+ text-align: center;
+}
+
+.message-box a {
+ color: inherit;
+}
+
+.msg-info {
+ background-color: #144054;
+}
+
+.msg-error {
+ background-color: #993838;
+}
+
+.msg-warning {
+ background-color: #54142C;
+}
+
+.msg-label {
+ font-weight: bold;
+ padding-right: 10px;
+}
+
+.donate-info {
+ background-color: #FFFFFF;
+ color: #000;
+}
+
+.donate-button {
+ background-color: #F4BB15;
+ padding: 5px;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+}
+
+.donate-button:hover {
+ background-color: #F7CB50;
+}
+
+.donate-info > a:link, .donate-info > a:visited {
+ color: #000;
+ font-weight: bold;
+ border: none;
+}