First commit
This commit is contained in:
14
build/index.html
Normal file
14
build/index.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Boilerplate Typescript Single Page App</title>
|
||||
<link rel="stylesheet" href="main.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="root">
|
||||
<noscript>Enable JavaScript, you fuck!</noscript>
|
||||
</div>
|
||||
<script src="bundle.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
22
build/main.css
Normal file
22
build/main.css
Normal file
@@ -0,0 +1,22 @@
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#root {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
#main-stage {
|
||||
border-color: black;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
box-shadow: 3px 3px 5px 0px rgba(0.0, 0.0, 0.0, 0.5);
|
||||
}
|
||||
|
||||
div#main-stage {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
Reference in New Issue
Block a user