diff options
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index 0e2aaa5..d8c928a 100644 --- a/static/style.css +++ b/static/style.css @@ -1,3 +1,9 @@ +/* helpers */ + +.txt-right { + text-align: right; +} + html { --width: 800px; --font-main: "DM Sans", sans-serif; @@ -91,6 +97,10 @@ hr { border-top: 1px dashed; } +small a { + text-transform: lowercase; +} + img { max-width: 100%; } @@ -151,3 +161,7 @@ ul.blog-posts li span { ul.blog-posts li a:visited { color: var(--visited-color); } +/* right now just used for chess charts*/ +canvas:not(:last-child) { + margin-bottom: 50px; +} |