From c8c1e29293a949b03c08cf703bed23eb5e908c8f Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Mon, 31 Jul 2023 15:33:02 +0200 Subject: [PATCH] fix border radius in table --- core.css | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/core.css b/core.css index d7ab07b..cc6f984 100644 --- a/core.css +++ b/core.css @@ -6,7 +6,7 @@ --color: white; } -* { +*:not(td):not(th) { border-radius: 0.5rem; } @@ -29,3 +29,18 @@ main { margin: 1rem 1rem 0; color: var(--color); } + +.meaning { + color: #9f9a9a; + font-style: italic; + font-weight: 100; + font-size: 1.2rem; +} + +.meaning::before { + content: '('; +} + +.meaning::after { + content: ')'; +}