Initial commit, basic web page with reagent component is working
This commit is contained in:
commit
5aac0474c1
13 changed files with 2103 additions and 0 deletions
13
resources/public/index.html
Normal file
13
resources/public/index.html
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
<title>All my friends are made of square shaped blocks</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
</body>
|
||||
<script src="js/main.js"></script>
|
||||
</html>
|
||||
20
resources/public/style.css
Normal file
20
resources/public/style.css
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
*,
|
||||
*:before,
|
||||
*:after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #eee;
|
||||
color: #222;
|
||||
font-family: sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 1.2;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue