From 067b447b98a01fbfd4338c29ae5affc7edf5f9f7 Mon Sep 17 00:00:00 2001 From: TinWoodman92 Date: Mon, 15 Jan 2024 20:31:20 -0600 Subject: adding X & O vectors --- style.css | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'style.css') 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; +} -- cgit v1.2.3