More UI changes

This commit is contained in:
2022-04-28 10:05:26 -04:00
parent c1ec5ffc7b
commit 789e7ce70a
4 changed files with 59 additions and 28 deletions

View File

@@ -231,6 +231,50 @@ code {
.button.blue:active {
background:#05232f;
box-shadow: none;
}
.text.center {
text-align: center;
}
.no-display {
display: none;
}
.button.link::after {
content: ' \2192';
display: inline-block;
transition: 100ms ease-in-out all;
margin-left: 0.3rem;
}
.button.link:hover {
display: inline-block;
transition: 100ms ease-in-out all;
}
.button.link:hover::after {
transform: translateX(0.2rem) scale(1.3);
}
.button.link.extern:hover::after {
transform: rotateZ(-45deg) scale(1.5);
}
.button.link.back::before {
content: ' \2190';
display: inline-block;
transition: 100ms ease-in-out all;
margin-right: 0.3rem;
}
.button.link:hover::before {
transform: translateX(-0.2rem) scale(1.3);
}
.button.link.back::after {
content: '';
display: none;
}

View File

@@ -1,19 +0,0 @@
.button::after {
content: ' \2192';
display: inline-block;
transition: 100ms ease-in-out all;
margin-left: 0.3rem;
}
.button:hover {
display: inline-block;
transition: 100ms ease-in-out all;
}
.button:hover::after {
transform: translateX(0.2rem) scale(1.3);
}
.blueButton:hover::after {
transform: rotateZ(-45deg) scale(1.5);
}