this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

credits

alice 6d628453 3b57b008

+25 -13
+19 -12
index.html
··· 1 1 <!DOCTYPE html> 2 2 <html lang="en"> 3 3 <head> 4 - <!-- Google tag (gtag.js) --> 5 - <script async src="https://www.googletagmanager.com/gtag/js?id=G-4JMPT8FWNV"></script> 6 - <script> 7 - window.dataLayer = window.dataLayer || []; 8 - function gtag() { 9 - dataLayer.push(arguments); 10 - } 11 - gtag('js', new Date()); 12 - 13 - gtag('config', 'G-4JMPT8FWNV'); 14 - </script> 15 - 16 4 <meta charset="UTF-8" /> 17 5 18 6 <!-- favicon from Twemoji (CC-BY 4.0)--> ··· 52 40 target="_blank" 53 41 >Fork me on GitHub</a 54 42 > 43 + <div id="credits"> 44 + Created by 45 + <a href="https://staging.bsky.app/profile/aliceisjustplaying.bsky.social" target="_blank"> 46 + @aliceisplaying.bsky.social 47 + </a> 48 + </div> 49 + 50 + <!-- Google tag (gtag.js) --> 51 + <script async src="https://www.googletagmanager.com/gtag/js?id=G-4JMPT8FWNV"></script> 52 + <script> 53 + window.dataLayer = window.dataLayer || []; 54 + function gtag() { 55 + dataLayer.push(arguments); 56 + } 57 + gtag('js', new Date()); 58 + 59 + gtag('config', 'G-4JMPT8FWNV'); 60 + </script> 61 + 55 62 <!-- Cloudflare Web Analytics --> 56 63 <script 57 64 async
+6 -1
src/styles.css
··· 12 12 13 13 h1 { 14 14 text-align: center; 15 + margin: 5px; 15 16 } 16 17 17 18 #actor { ··· 21 22 #loginMessage { 22 23 color: red; 23 24 text-align: center; 24 - padding-top: 10px; 25 25 } 26 26 27 27 .github-fork-ribbon:before { background-color: #c00; } ··· 31 31 text-align: center; 32 32 padding-bottom: 10px; 33 33 } 34 + 35 + #credits { 36 + font-size: 80%; 37 + text-align: center; 38 + }