diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-09-28 22:32:04 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-28 22:57:46 +0200 |
commit | a7687242706cd529194008bbe9595d585a275ad7 (patch) | |
tree | 1ea8ac84f8726fea4ca0c68faec8c912e84b4ec5 /Libraries/LibHTML/CSS/Default.css | |
parent | 8271ad40a5bfef77dd2698e2b0554590dc05949d (diff) | |
download | serenity-a7687242706cd529194008bbe9595d585a275ad7.zip |
LibHTML: Make <a> 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.
Diffstat (limited to 'Libraries/LibHTML/CSS/Default.css')
-rw-r--r-- | Libraries/LibHTML/CSS/Default.css | 5 |
1 files changed, 5 insertions, 0 deletions
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; +} |