From 39291d5a757041fcc46b275a60b6fb277944289c Mon Sep 17 00:00:00 2001 From: sandyx Date: Fri, 14 Feb 2025 18:57:13 -0600 Subject: [PATCH] stylesheet --- style.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..f21c4fb --- /dev/null +++ b/style.css @@ -0,0 +1,23 @@ +.grid-container { + font-family: Arial, sans-serif; + //font-size: 4vh; + //width: 100%; + height: 100%; + display: grid; + grid-template-columns: repeat(3, auto); + //grid-auto-rows: minmax(100%, auto); + margin-left: 30%; + margin-right: 30%; +} + +.grid-item { + padding: 5px; + background: darkred; + border-radius: 0px; + border: 1px solid white; + text-align: center; +} + +a { + color: white; +}