From a7687242706cd529194008bbe9595d585a275ad7 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 28 Sep 2019 22:32:04 +0200 Subject: LibHTML: Make tags blue and underline by default In the future, this should only apply to "a:link", but since we don't have pseudo-classes yet, all "a" tags will do for now. --- Libraries/LibHTML/CSS/Default.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Libraries/LibHTML/CSS') diff --git a/Libraries/LibHTML/CSS/Default.css b/Libraries/LibHTML/CSS/Default.css index 9c44fc9548..92d51927db 100644 --- a/Libraries/LibHTML/CSS/Default.css +++ b/Libraries/LibHTML/CSS/Default.css @@ -64,3 +64,8 @@ li { margin-top: 2; margin-bottom: 2; } + +a { + color: #0000ff; + text-decoration: underline; +} -- cgit v1.2.3