summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcflip <36554078+cflip@users.noreply.github.com>2021-04-25 17:49:12 -0600
committercflip <36554078+cflip@users.noreply.github.com>2021-04-25 17:49:12 -0600
commit553d46ae295e880b1bb024fe725870db21f4e61d (patch)
treebd4e945479ab6b36dcc64b35a69ad7bf6b3721c6
parent0d163247b2cf93a8cefa638e4f134c85b29e91a6 (diff)
Add some coloured backgrounds for errors and successes
-rw-r--r--styles/style.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/styles/style.css b/styles/style.css
index 9e37f62..95d3a94 100644
--- a/styles/style.css
+++ b/styles/style.css
@@ -18,6 +18,24 @@ small {
color: #dde;
}
+.success {
+ background-color: #efe;
+ margin: 8px 40px 14px 18px;
+ padding: 12px;
+ border: 1px solid #aea;
+ overflow: hidden;
+ border-radius: 5px;
+}
+
+.error {
+ background-color: #fee;
+ margin: 8px 40px 14px 18px;
+ padding: 12px;
+ border: 1px solid #eaa;
+ overflow: hidden;
+ border-radius: 5px;
+}
+
a:hover {
color:#373737;
text-decoration: none;