Start on styling.

This commit is contained in:
Danila Fedorin 2019-05-28 22:56:45 -07:00
parent 8d00731248
commit 9aec4053f0
2 changed files with 19 additions and 0 deletions

14
index.html Normal file
View File

@ -0,0 +1,14 @@
<html>
<head>
<script src="/static/js/elm.js"></script>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<div id="elm"></div>
<script>
var app = Elm.Main.init({
node: document.getElementById('elm')
});
</script>
</body>
</html>

5
static/scss/style.scss Normal file
View File

@ -0,0 +1,5 @@
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');
body {
font-family: Raleway, serif;
}