diff options
author | Andrew Yu <andrew@andrewyu.org> | 2022-01-11 15:30:05 +0800 |
---|---|---|
committer | Andrew Yu <andrew@andrewyu.org> | 2022-01-11 15:30:05 +0800 |
commit | f7d30dd1ecc176a51674794d98fe1124b0b3084a (patch) | |
tree | 5d5df9401e4deba20b9bcdc26034fd30b4d70e61 /style.css | |
parent | f5f972c58a2cac996522bb2f52bdaa14f7a83cd3 (diff) | |
download | www-f7d30dd1ecc176a51674794d98fe1124b0b3084a.tar.gz |
padding of anchor
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/style.css b/style.css index a86f290..d795a28 100644 --- a/style.css +++ b/style.css @@ -30,24 +30,28 @@ h1 { font-size: 80%; } a:link { - color: cyan; - text-decoration: none; - border: solid cyan 1px; + color: cyan; + text-decoration: none; + border: solid cyan 1px; + padding: 2px; } a:visited { - color: violet; - text-decoration: none; - border: solid violet 1px; + color: violet; + text-decoration: none; + border: solid violet 1px; + padding: 2px; } a:hover { - color: yellow; - text-decoration: none; - border: solid yellow 1px; + color: yellow; + text-decoration: none; + border: solid yellow 1px; + padding: 2px; } a:active { - color: lime; - text-decoration: none; - border: solid lime 1px; + color: lime; + text-decoration: none; + border: solid lime 1px; + padding: 2px; } #nav ul { list-style-type: none; |