feat: make borders less thick and curvy

As suggested by vitorg
This commit is contained in:
Leo Gavilieau 2023-05-20 20:46:07 +02:00
parent 1f15b6cba6
commit 6db04d7b35
No known key found for this signature in database
GPG Key ID: 9F86E792898BD16B
1 changed files with 6 additions and 6 deletions

View File

@ -52,9 +52,9 @@ header,main,footer {
/* Header styling (logo, nav etc.) */
header {
border-bottom: 4px solid var(--linkColor);
border-radius: 1rem;
padding-bottom:1rem;
border-bottom: 2px solid var(--linkColor);
border-radius: 0.5rem;
padding-bottom:0.5rem;
}
#logo {
@ -66,9 +66,9 @@ header {
}
footer {
border-top: 4px solid var(--linkColor);
border-radius: 1rem;
padding-top:1rem;
border-top: 2px solid var(--linkColor);
border-radius: 0.5rem;
padding-top:0.5rem;
}
footer p { margin: 0.2em 0 0.2em 0; }