diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2024-01-15 20:31:20 -0600 |
---|---|---|
committer | TinWoodman92 <chrhodgden@gmail.com> | 2024-01-15 20:31:20 -0600 |
commit | 067b447b98a01fbfd4338c29ae5affc7edf5f9f7 (patch) | |
tree | 0d16a8e9c75e8f4289e83bca837503ed2036e84c /style.css | |
parent | 4f41c8fce448933e88965833feff0fb3faab79b5 (diff) |
adding X & O vectorsdev
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -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; +} |