aboutsummaryrefslogtreecommitdiff
path: root/static/css/shared/core.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/shared/core.css')
-rw-r--r--static/css/shared/core.css32
1 files changed, 32 insertions, 0 deletions
diff --git a/static/css/shared/core.css b/static/css/shared/core.css
index 94e9e2e1..ac629b03 100644
--- a/static/css/shared/core.css
+++ b/static/css/shared/core.css
@@ -63,6 +63,38 @@ a:active {
color: #df23c4;
}
+button {
+ background: #4444b1;
+ color: #fff;
+ padding: 8px 16px;
+ border-radius: 4px;
+ cursor: pointer;
+ outline: none;
+ font-weight: bold;
+}
+
+button:hover {
+ background: #df23c4;
+}
+
+button:active {
+ background: #8d8dff;
+}
+
+button:disabled {
+ background: #8d8dff;
+ color: #ccc;
+ cursor: not-allowed;
+}
+
+button:disabled:hover {
+ background: #8d8dff;
+}
+
+button:focus {
+ outline: none;
+}
+
a:hover {
text-decoration: underline;
}