From 0cd82d2da766c37746df27ea64acacfda7efcfc4 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 6 Oct 2022 14:50:17 +0200 Subject: [PATCH] LibWeb: Add a little header to the top of the default UA stylesheet Since all the spec sections are annotated with comments already, let's also have a comment mentioning that the file starts with ad-hoc rules. --- Userland/Libraries/LibWeb/CSS/Default.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index 9d37796673..0969826202 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -1,3 +1,8 @@ +/* Default user-agent stylesheet for LibWeb + * Note: This stylesheet starts with a bunch of ad-hoc custom rules. + * After that, rules from the HTML spec follow. + */ + html { font-family: sans-serif; color: -libweb-palette-base-text;