WIP
This commit is contained in:
47
reagent-test/public/css/site.css
Normal file
47
reagent-test/public/css/site.css
Normal file
@@ -0,0 +1,47 @@
|
||||
body {
|
||||
font-family: 'Helvetica Neue', Verdana, Helvetica, Arial, sans-serif;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
padding-top: 72px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-size: 1.125em;
|
||||
color: #333;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
color: #000;
|
||||
}
|
||||
h1 {
|
||||
font-size: 2.5em
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2em
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.5em
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #09f;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.button-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.menu {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.menu-item {
|
||||
width: 5rem;
|
||||
}
|
||||
16
reagent-test/public/index.html
Normal file
16
reagent-test/public/index.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta content="width=device-width, initial-scale=1" name="viewport">
|
||||
<link href="/css/site.css" rel="stylesheet" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">
|
||||
<h3>ClojureScript has not been compiled!</h3>
|
||||
<p>please run <b>npx shadow-cljs watch app</b> in order to start the compiler</p>
|
||||
</div>
|
||||
<script src="/js/app.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">reagent_test.core.init_BANG_();</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user