| 1 | <li><a href="https://www.youtube.com/channel/UC72_Shtp0psr4sUSw_KaG5A">Videos</a></li> |
| 2 | <!DOCTYPE html> |
| 3 | <html> |
| 4 | <head> |
| 5 | $meta |
| 6 | <style> |
| 7 | @import url('https://fonts.googleapis.com/css?family=Fira+Sans:400,400i,700,700i&display=swap'); |
| 8 | html{ |
| 9 | display: flex; |
| 10 | align-items: center; |
| 11 | justify-content: center; |
| 12 | height: 100vh; |
| 13 | font-family: 'Fira Sans', sans-serif; |
| 14 | text-rendering: optimizeLegibility; |
| 15 | letter-spacing: -1px; |
| 16 | color: #eee; |
| 17 | text-shadow: 2px 2px 8px #000; |
| 18 | } |
| 19 | body{ |
| 20 | display: flex; |
| 21 | align-items: center; |
| 22 | justify-content: center; |
| 23 | /*background-color: #497fc6;*/ |
| 24 | background: |
| 25 | linear-gradient( |
| 26 | rgba(0, 0, 0, 0.65), |
| 27 | rgba(0, 0, 0, 0.65) |
| 28 | ), |
| 29 | url(/static/esp32.jpg) no-repeat center center fixed; |
| 30 | background-size: cover; |
| 31 | } |
| 32 | div { |
| 33 | display: inline-block; |
| 34 | vertical-align: middle; |
| 35 | text-align: center; |
| 36 | } |
| 37 | h1 {font-size:6em;} |
| 38 | p {font-size:2.5em;margin:10px;} |
| 39 | p.small {font-size:1.75em;letter-spacing: 0px;} |
| 40 | a { |
| 41 | color: #ffffffdd; |
| 42 | text-decoration: none; |
| 43 | } |
| 44 | a:hover { |
| 45 | color: #ffffffff; |
| 46 | text-decoration: underline; |
| 47 | } |
| 48 | ul { |
| 49 | list-style: none; |
| 50 | padding: 0; |
| 51 | } |
| 52 | li { |
| 53 | font-size: 24px; |
| 54 | display: inline-block; |
| 55 | padding: 0 18px; |
| 56 | } |
| 57 | @media (max-width: 800px) { |
| 58 | body { |
| 59 | font-size: 2vw; |
| 60 | overflow: hidden; |
| 61 | } |
| 62 | } |
| 63 | </style> |
| 64 | </head> |
| 65 | <body> |
| 66 | <div> |
| 67 | <h1 style="margin:20px">Josh Stockin</h1> |
| 68 | <p>17-year-old aspiring software engineer</p> |
| 69 | <p class="small"><a href="mailto:josh@joshstock.in"><em>josh@joshstock.in</em></a></p> |
| 70 | </div> |
| 71 | <div style="position: absolute; bottom: 40px;"> |
| 72 | <ul> |
| 73 | <li><a href="mailto:josh@joshstock.in">Email</a></li> |
| 74 | <li><a href="https://github.com/JoshuaS3">GitHub</a></li> |
| 75 | <li><a href="https://git.joshstock.in">Git Server</a></li> |
| 76 | <li><a href="https://www.youtube.com/channel/UC72_Shtp0psr4sUSw_KaG5A">Videos</a></li> |
| 77 | <li><a href="/blog">Blog</a></li> |
| 78 | <li><a href="https://joshstockin.weebly.com">Weebly</a></li> |
| 79 | </ul> |
| 80 | </div> |
| 81 | </body> |
| 82 | </html> |
| 83 |
|