From f8c006414aec99c90558587dbe08cf1705ed44f7 Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Wed, 16 Mar 2022 22:34:43 +0100 Subject: Initial commit w/ v0.0.1 --- src/style.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/style.css (limited to 'src/style.css') diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..6f617ad --- /dev/null +++ b/src/style.css @@ -0,0 +1,23 @@ +:root { + font-family: Avenir, Helvetica, Arial, sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + color: #2c3e50; + background-color: black; +} + +table { + border-collapse: collapse; + margin: 20px auto; +} +td { + border: 1px solid darkred; + width: 50px; + height: 50px; +} +td div { + width: 35px; + height: 35px; + margin: auto auto; + border-radius: 50%; +} -- cgit v1.3.1