diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2008-10-10 22:07:53 +0200 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2008-10-10 22:07:53 +0200 |
commit | 205b6f4a058d80a31ca1e8810f52e1a2f8939cb9 (patch) | |
tree | a8feaec45bae5b144da05fd8551cb3436f2a03f6 | |
parent | b5f4f1d087434c42d0f74e16ed89da3e35e011a7 (diff) | |
download | trivium-205b6f4a058d80a31ca1e8810f52e1a2f8939cb9.tar.gz trivium-205b6f4a058d80a31ca1e8810f52e1a2f8939cb9.tar.xz trivium-205b6f4a058d80a31ca1e8810f52e1a2f8939cb9.zip |
Markup visited links
-rw-r--r-- | data/style.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/data/style.css b/data/style.css index 2a2e75e..d77dd42 100644 --- a/data/style.css +++ b/data/style.css @@ -40,7 +40,7 @@ h2 abbr { text-decoration: none; } -.entry-content a, .nav a, .all { +.entry-content a, .nav a { text-decoration: none; color: #69CE0D; background-color: #EBFBCF; @@ -51,6 +51,14 @@ h2 abbr { text-decoration: underline; } +.entry-content a:visited { + color: #529E0A; +} + +.entry-content a:visited:hover { + text-decoration: none; +} + .hentry { margin-top: 12px; |