Thread viewer for Bluesky

added link to github in the corner

Changed files
+21
icons
icons/github.png

This is a binary file and will not be displayed.

+6
index.html
··· 17 </form> 18 </div> 19 20 <div id="login"> 21 <form method="get"> 22 <h2>🌤 Skythread</h2>
··· 17 </form> 18 </div> 19 20 + <div id="github"> 21 + <a href="https://github.com/mackuba/skythread" target="_blank"> 22 + <img src="icons/github.png"> 23 + </a> 24 + </div> 25 + 26 <div id="login"> 27 <form method="get"> 28 <h2>🌤 Skythread</h2>
+15
style.css
··· 29 color: rgb(0, 0, 255); 30 } 31 32 #search { 33 visibility: hidden; 34 position: fixed;
··· 29 color: rgb(0, 0, 255); 30 } 31 32 + #github { 33 + position: fixed; 34 + bottom: 10px; 35 + right: 10px; 36 + } 37 + 38 + #github img { 39 + width: 20px; 40 + opacity: 0.4; 41 + } 42 + 43 + #github a:hover img { 44 + opacity: 0.6; 45 + } 46 + 47 #search { 48 visibility: hidden; 49 position: fixed;