From: Erik Faye-Lund Date: Thu, 18 Apr 2019 10:55:07 +0000 (+0200) Subject: docs: avoid repeating the font X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=86e38330d31d0f6da79bed8fd06802215793fa18;p=mesa.git docs: avoid repeating the font The font attribute is inherited in CSS, so there's no point in repeating this. Signed-off-by: Erik Faye-Lund Reviewed-by: Eric Engestrom --- diff --git a/docs/mesa.css b/docs/mesa.css index 5fa7bc34d77..a55833ce076 100644 --- a/docs/mesa.css +++ b/docs/mesa.css @@ -6,13 +6,13 @@ body { } h1 { - font: 24px 'Lucida Grande', Geneva, Arial, Verdana, sans-serif; + font-size: 24px; font-weight: bold; color: black; } h2 { - font: 18px 'Lucida Grande', Geneva, Arial, Verdana, sans-serif, bold; + font-size: 18px; font-weight: bold; color: black; }