Compare commits

...

2 Commits

Author SHA1 Message Date
Nathan DECHER 17ab288b63 added hover to buttons 2020-04-14 11:10:42 +02:00
Nathan DECHER f607034a33 added hover to links 2020-04-14 11:07:49 +02:00
2 changed files with 19 additions and 0 deletions

View File

@ -108,10 +108,20 @@
background: @accentbg;
font-weight: bold;
cursor: pointer;
border-radius: 1rem;
border: 0;
padding: 2rem;
margin: 1rem;
transition: box-shadow .5s;
&:hover {
color: @fg;
text-decoration: underline;
box-shadow: black 0 0 2rem;
}
}
}
}

View File

@ -40,6 +40,11 @@ a {
display: contents;
}
a:hover {
color: @fg;
text-decoration: underline;
}
em {
font-style: italic;
}
@ -86,6 +91,10 @@ header ul {
a {
color: @fg;
&:hover {
color: @accentfg;
}
}
}
}