diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2022-03-16 22:34:43 +0100 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2022-03-16 22:34:43 +0100 |
| commit | f8c006414aec99c90558587dbe08cf1705ed44f7 (patch) | |
| tree | 2f52ea7f071f91e5e53e4dfdde9cdd2b8d7cd4dc /src/style.css | |
| download | boules-f8c006414aec99c90558587dbe08cf1705ed44f7.tar.gz boules-f8c006414aec99c90558587dbe08cf1705ed44f7.tar.zst boules-f8c006414aec99c90558587dbe08cf1705ed44f7.zip | |
Initial commit w/ v0.0.1
Diffstat (limited to 'src/style.css')
| -rw-r--r-- | src/style.css | 23 |
1 files changed, 23 insertions, 0 deletions
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%; +} |
