diff options
Diffstat (limited to 'static/css/styles.css')
| -rw-r--r-- | static/css/styles.css | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/static/css/styles.css b/static/css/styles.css index ffc3114..b3babe7 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -1,5 +1,7 @@ @import "/static/css/colors.css"; @import "/static/css/blinky.css"; +@import "/static/css/table.css"; +@import "/static/css/form.css"; @font-face { font-family: "ComicSans"; @@ -11,10 +13,10 @@ margin: 0; padding: 0; color: var(--text-color); + font-family: "ComicSans", sans-serif; } body { - font-family: "ComicSans", sans-serif; background-color: var(--background-color); background-image: url("/static/img/stars.gif"); min-height: 100vh; @@ -35,7 +37,6 @@ a:hover { margin: auto; background-color: var(--container-bg); padding: 1rem; - opacity: 0.95; } hr { @@ -44,3 +45,11 @@ hr { margin: 20px 0; } + +.blinkies { + display: flex; + justify-content: left; + flex-wrap: wrap; + max-width: 900px; + gap: 10px 10px; +} |
