added contact and more

This commit is contained in:
Vrifox 2020-11-09 16:12:02 +01:00
parent 1c23a90826
commit 9ccc7b5bd7
7 changed files with 83 additions and 22 deletions

View file

@ -0,0 +1,13 @@
@mixin a-underlined {
a {
border-bottom: 1px solid;
color: $white;
margin: -5px;
padding: 5px;
transition: border .2s, color .2s;
&:hover {
color: $red;
text-decoration: none;
}
}
}