Move build/watch to git style sub-commands
This commit is contained in:
parent
5046292d69
commit
2cf7d346cb
6 changed files with 652 additions and 0 deletions
151
public/index.html
Normal file
151
public/index.html
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
<html lang="en" data-reactid=".phj1nbkf0g" data-react-checksum="1789675150"><head data-reactid=".phj1nbkf0g.0"><meta charset="utf-8" data-reactid=".phj1nbkf0g.0.0"><meta http-equiv="X-UA-Compatible" content="IE=edge" data-reactid=".phj1nbkf0g.0.1"><meta name="viewport" content="user-scalable=no width=device-width, initial-scale=1.0 maximum-scale=1.0" data-reactid=".phj1nbkf0g.0.2"><title data-reactid=".phj1nbkf0g.0.3">Default title</title><link rel="shortcut icon" data-reactid=".phj1nbkf0g.0.4"><style id="react-typography" data-reactid=".phj1nbkf0g.0.5">/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
|
||||
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
font-size: 112.5%;
|
||||
line-height: 1.58333em;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
*, *:before, *:after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
body {
|
||||
color: hsl(0,0%,20%);
|
||||
font-family: georgia, serif;
|
||||
font-weight: 400;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
/* Make image responsive by default */
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
/* All block elements get one rhythm of bottom margin. */
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
hgroup,
|
||||
ul,
|
||||
ol,
|
||||
dl,
|
||||
dd,
|
||||
p,
|
||||
figure,
|
||||
pre,
|
||||
table,
|
||||
fieldset,
|
||||
blockquote,
|
||||
form,
|
||||
noscript,
|
||||
iframe,
|
||||
img,
|
||||
hr {
|
||||
margin: 0;
|
||||
margin-bottom: 1.58333rem;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 1.58333rem 3.95833rem;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: 700
|
||||
}
|
||||
|
||||
hr {
|
||||
background: hsl(0,0%,80%);
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin-bottom: calc(1.58333rem - 1px);
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
list-style-position: outside;
|
||||
margin-left: 1.58333rem;
|
||||
}
|
||||
|
||||
ul li,
|
||||
ol li {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.58333rem;
|
||||
}
|
||||
|
||||
table {
|
||||
font-size: 1rem;
|
||||
line-height: 2.375rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
thead {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
color: hsl(0,0%,20%);
|
||||
font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.82843rem;
|
||||
line-height: 3.16667rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
line-height: 2.375rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.41421rem;
|
||||
line-height: 2.375rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.25992rem;
|
||||
line-height: 1.58333rem;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.12246rem;
|
||||
line-height: 1.58333rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
line-height: 1.58333rem;
|
||||
}
|
||||
</style><style data-reactid=".phj1nbkf0g.0.6">body {
|
||||
color: rgb(66,66,66);
|
||||
}
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
color: rgb(44,44,44);
|
||||
}
|
||||
a {
|
||||
color: rgb(42,93,173);
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}</style></head><body class="landing-page" data-reactid=".phj1nbkf0g.1"><div id="react-mount" data-reactid=".phj1nbkf0g.1.0"><div style="max-width:38rem;margin-left:auto;margin-right:auto;padding:3.16667rem 1.58333rem;" data-reactid=".uriol4iayo" data-react-checksum="-124832253"><h1 style="font-size:2.37841rem;line-height:3.16667rem;margin-bottom:2.375rem;" data-reactid=".uriol4iayo.0:0"><a style="text-decoration:none;color:inherit;" class=" active" href="/" data-reactid=".uriol4iayo.0:0.0">My Awesome Blog</a></h1><div data-reactid=".uriol4iayo.0:1"><p style="margin-bottom:3.95833rem;" data-reactid=".uriol4iayo.0:1.0"><img src="./kyle-round-small-pantheon.jpg" style="float:left;margin-right:0.39583rem;margin-bottom:0;width:3.16667rem;height:3.16667rem;" data-reactid=".uriol4iayo.0:1.0.0"><span data-reactid=".uriol4iayo.0:1.0.1">Written by </span><strong data-reactid=".uriol4iayo.0:1.0.2">Kyle Mathews</strong><span data-reactid=".uriol4iayo.0:1.0.3"> who lives and works in San Francisco building useful things. </span><a href="https://twitter.com/kylemathews" data-reactid=".uriol4iayo.0:1.0.4">You should follow him on Twitter</a></p><ul data-reactid=".uriol4iayo.0:1.1"><li style="margin-bottom:0.39583rem;" data-reactid=".uriol4iayo.0:1.1.$/hi-folks/"><a class="" href="/hi-folks/" data-reactid=".uriol4iayo.0:1.1.$/hi-folks/.0">New Beginnings</a></li><li style="margin-bottom:0.39583rem;" data-reactid=".uriol4iayo.0:1.1.$/my-second-post/"><a class="" href="/my-second-post/" data-reactid=".uriol4iayo.0:1.1.$/my-second-post/.0">My Second Post!</a></li><li style="margin-bottom:0.39583rem;" data-reactid=".uriol4iayo.0:1.1.$/hello-world/"><a class="" href="/hello-world/" data-reactid=".uriol4iayo.0:1.1.$/hello-world/.0">Hello World</a></li></ul></div><span style="display:block;clear:both;" data-reactid=".uriol4iayo.1"> </span></div></div><script src="/bundle.js" data-reactid=".phj1nbkf0g.1.1"></script></body></html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue