summaryrefslogtreecommitdiff
path: root/htdocs/css
diff options
context:
space:
mode:
authorBelén Barros Peña <belen.barros.pena@intel.com>2014-10-09 10:09:05 +0100
committerStephen Finucane <stephen.finucane@intel.com>2015-11-05 03:51:32 +0000
commitc3598af342223f6384c9873e533277bc76f77119 (patch)
tree9ea636b6cf4f3db33d6420997bf03d80b24c99f8 /htdocs/css
parentea5173d666d5c727a72bf27178e908b1cb6e13a4 (diff)
downloadpatchwork-c3598af342223f6384c9873e533277bc76f77119.tar
patchwork-c3598af342223f6384c9873e533277bc76f77119.tar.gz
style.css: Tune <a> styling
The links aren't underlined anymore. If, once visited, they are to become black, we won't be able to distinguish them from regular text. Instead let's decide about a color for links so they can be spotted, even after a visit. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Acked-by: Stephen Finucane <stephen.finucane@intel.com>
Diffstat (limited to 'htdocs/css')
-rw-r--r--htdocs/css/style.css9
1 files changed, 7 insertions, 2 deletions
diff --git a/htdocs/css/style.css b/htdocs/css/style.css
index b66acc8..16a66d4 100644
--- a/htdocs/css/style.css
+++ b/htdocs/css/style.css
@@ -1,5 +1,10 @@
-a:visited { color: #000000; }
-a { color: #786fb4; }
+a {
+ color: #2E2E70;
+}
+
+a:hover {
+ color: #0A0A47;
+}
.floaty {
position: fixed;