mirror of
https://github.com/jfmengels/elm-review.git
synced 2024-11-24 15:54:02 +03:00
51 lines
800 B
HTML
51 lines
800 B
HTML
<html>
|
|
<head>
|
|
<title>elm-lint</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="description" content="An online Elm linter.">
|
|
<style>
|
|
</script>
|
|
textarea {
|
|
font-family: monospace;
|
|
width: 100%;
|
|
height: 400px;
|
|
}
|
|
|
|
pre {
|
|
white-space: pre-wrap;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script src="elm.js"></script>
|
|
<script>
|
|
Elm.Main.fullscreen();
|
|
</script>
|
|
</body>
|
|
<style>
|
|
#wrapper {
|
|
display: flex;
|
|
}
|
|
#left {
|
|
flex: 0 0 40%;
|
|
}
|
|
#input {
|
|
flex: 1;
|
|
width: 100%;
|
|
height: 60%;
|
|
}
|
|
#right {
|
|
flex: 1;
|
|
}
|
|
#ast {
|
|
border: solid 1px;
|
|
}
|
|
#lint {
|
|
border: solid 1px;
|
|
}
|
|
.title {
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
</html>
|