summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorTinWoodman92 <chrhodgden@gmail.com>2024-01-15 20:31:20 -0600
committerTinWoodman92 <chrhodgden@gmail.com>2024-01-15 20:31:20 -0600
commit067b447b98a01fbfd4338c29ae5affc7edf5f9f7 (patch)
tree0d16a8e9c75e8f4289e83bca837503ed2036e84c /style.css
parent4f41c8fce448933e88965833feff0fb3faab79b5 (diff)
adding X & O vectorsdev
Diffstat (limited to 'style.css')
-rw-r--r--style.css15
1 files changed, 14 insertions, 1 deletions
diff --git a/style.css b/style.css
index 97ed162..5ade367 100644
--- a/style.css
+++ b/style.css
@@ -1,6 +1,8 @@
:root{
--foreground-color: hsl(180, 50%, 50%);
--background-color: hsl(0, 0%, 0%);
+ --x-color: hsl(300, 100%, 50%);
+ --o-color: hsl(180, 100%, 50%);
}
@media (max-width: 600px) {
@@ -62,4 +64,15 @@ nav {
.square:nth-child(n+6) {
border-bottom: 0;
-} \ No newline at end of file
+}
+
+.x {
+ stroke-width: var(--stroke-width);
+ stroke: var(--x-color);
+}
+
+.o {
+ stroke-width: var(--stroke-width);
+ stroke: var(--o-color);
+ fill-opacity: 0;
+}