Index

joshstock.in / 5d3b735

Source for serving and static templating/compiling of https://joshstock.in.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
6813 Jan 2020 21:075d3b735Add a background image to the landing page, remove iconsJosh Stockin11710N

Blob @ joshstock.in / resources / landing.html

text/html2438 bytesdownload raw
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta http-equiv="content-type" content="text/html; charset=utf-8">
5 <title>Josh Stockin</title>
6 <meta name="title" content="Josh Stockin" />
7 <meta name="description" content="The personal website, blog, and portfolio of Josh Stockin" />
8 <meta property="og:site_name" content="Josh Stockin" />
9 <meta property="og:title" content="Josh Stockin" />
10 <meta property="og:description" content="The personal website, blog, and portfolio of Josh Stockin" />
11 <meta property="og:type" content="website" />
12 <meta property="og:image" content="/static/favicon.png" />
13 <meta property="og:url" content="https://joshstock.in" />
14 <style>
15 @import url('https://fonts.googleapis.com/css?family=Fira+Sans:400,400i,500&display=swap');
16 html{
17 display: flex;
18 align-items: center;
19 justify-content: center;
20 height: 100vh;
21 font-family: 'Fira Sans', sans-serif;
22 letter-spacing: -1px;
23 color: #eee;
24 text-shadow: 2px 2px 8px #000;
25 }
26 body{
27 display: flex;
28 align-items: center;
29 justify-content: center;
30 /*background-color: #497fc6;*/
31 background:
32 linear-gradient(
33 rgba(0, 0, 0, 0.7),
34 rgba(0, 0, 0, 0.7)
35 ),
36 url(/static/esp32.jpg) no-repeat center center fixed;
37 background-size: cover;
38 }
39 div {
40 display: inline-block;
41 vertical-align: middle;
42 text-align: center;
43 }
44 a {
45 color: #eee;
46 text-decoration: none;
47 }
48 a:hover {
49 text-decoration: underline;
50 }
51 ul {
52 list-style: none;
53 padding: 0;
54 }
55 li {
56 font-size: 1.5em;
57 display: inline;
58 padding: 0 0.8em;
59 }
60 @media (max-width: 800px) {
61 body {
62 font-size: 2vw;
63 }
64 }
65 </style>
66 <meta name="viewport" content="width=device-width, initial-scale=1">
67 </head>
68 <body>
69 <div>
70 <h1 style="font-size: 6em; margin:20px">Josh Stockin</h1>
71 <p style="font-size: 2.5em; margin: 10px">A 16-year-old aspiring software engineer</p>
72 <p style="font-size: 1.75em; margin: 10px; font-style: italic;"><a href="mailto:joshstockin@gmail.com">joshstockin@gmail.com</a></p>
73 </div>
74 <div style="position: absolute; bottom: 2em;">
75 <ul>
76 <li><a href="mailto:joshstockin@gmail.com">Email</a></li>
77 <li><a href="https://www.twitter.com/joshstockin">Twitter</a></li>
78 <li><a href="https://git.joshstock.in">Git Commits</a></li>
79 <li><a href="/blog">Blog</a></li>
80 </ul>
81 </div>
82 </body>
83</html>
84