Compare commits

...

3 Commits

Author SHA1 Message Date
4f068ab9dd Merge branch 'master' of ssh://git.shockrah.xyz:2222/shockrah/temper-tv
All checks were successful
Build and Deploy Resume Site / setup-website-content (push) Successful in 22s
2026-01-27 15:08:09 -08:00
a79e9f6b8b home button class attachment 2026-01-27 14:47:25 -08:00
178477613a Adding a simple border to the home button 2026-01-27 14:47:11 -08:00
2 changed files with 10 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
<nav class="navbar sticky-top">
<a class="navbar-brand" href="/">
<a class="navbar-brand home-button" href="/">
<img src="/img/favicon.png" width="30" height="30" alt="main logo">
Temper.tv
</a>

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;}