aboutsummaryrefslogtreecommitdiff
path: root/client/style.css
diff options
context:
space:
mode:
authorJasper Van der Jeugt2020-07-30 20:09:47 +0200
committerJasper Van der Jeugt2020-07-30 20:09:47 +0200
commit68588db76baaf8f2f17dd9b7f3649b09e102ea85 (patch)
tree5704809d61b4ecfb6ac40f06b1ad51e23c9d313c /client/style.css
parent3b7d11c6182b8aa3d3d4f9e36c213e4eba6c8d8f (diff)
Pass black and white cards to the client
Diffstat (limited to '')
-rw-r--r--client/style.css13
1 files changed, 11 insertions, 2 deletions
diff --git a/client/style.css b/client/style.css
index fd26c52..6cd9f5d 100644
--- a/client/style.css
+++ b/client/style.css
@@ -2,11 +2,20 @@ html {
font-size: 18px;
}
+.card {
+ padding: 18px;
+ border-radius: 18px;
+}
+
.black {
color: white;
background: black;
- padding: 18px;
- border-radius: 18px;
+}
+
+.white {
+ color: black;
+ background: white;
+ border: 2px solid black;
}
.blank {