Start on styling.
This commit is contained in:
parent
8d00731248
commit
9aec4053f0
14
index.html
Normal file
14
index.html
Normal 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
5
static/scss/style.scss
Normal file
|
@ -0,0 +1,5 @@
|
|||
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');
|
||||
|
||||
body {
|
||||
font-family: Raleway, serif;
|
||||
}
|
Loading…
Reference in New Issue
Block a user