📋 fix css for tables

Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
Sid 2024-07-08 20:33:41 +02:00
parent 00b25a7892
commit 4db7e43c1d
Signed by: sidski
GPG key ID: D2BBDF3EDE6BA9A6
2 changed files with 7 additions and 2 deletions

View file

@ -4,12 +4,11 @@ description: ""
layout: "../layouts/Layout.astro" layout: "../layouts/Layout.astro"
--- ---
> *Last update: June 07, 2024* > *Last update: July 08, 2024*
List of changes and new features I plan for this website. List of changes and new features I plan for this website.
- Add page filled with wine/gin I like - Add page filled with wine/gin I like
- Add page dedicated to work I'm proud of - Add page dedicated to work I'm proud of
- Fix CSS for tables
- Add an 88x31 button (One Piece themed) - Add an 88x31 button (One Piece themed)
- Change default text-highlight color to follow themes - Change default text-highlight color to follow themes

View file

@ -62,6 +62,7 @@ p {
.blog li { .blog li {
list-style: disc inside; list-style: disc inside;
padding: 10px 0 0 10px; padding: 10px 0 0 10px;
font-size: large;
} }
.blog li ul { .blog li ul {
@ -96,6 +97,11 @@ p {
font-weight: 600; font-weight: 600;
} }
.blog table, th, td {
border: 1px solid;
margin: 10px 0px;
}
.blog a { color: var(--dark-link);} .blog a { color: var(--dark-link);}
.dark .blog a { color: var(--light-link);} .dark .blog a { color: var(--light-link);}