Adding a simple border to the home button

This commit is contained in:
2026-01-27 14:47:11 -08:00
parent 24630ae0c3
commit 178477613a

View File

@@ -49,6 +49,15 @@ blockquote {
-o-animation: fadeIn 3s;
-ms-animation: fadeIn 3s;
}
.home-button {
padding-left: 1em;
background-color: #212121;
border-style: solid;
border-width: 3px;
border-radius: 0.5em;
border-color: darkorange;
padding-right: 1em;
}
@keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}