Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
btopro committed Oct 11, 2024
1 parent 432e966 commit 6d964ac
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 95 deletions.
10 changes: 10 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@
<title>HAX is Ubiquitous Web Publishing</title>
</head>
<body>
<div id="top">
<ul>
<li>&lt;h-a-x&gt; Demo</li>
<li><a href="https://haxtheweb.org" target="_blank">Learn HAX</a></li>
<li><a href="https://github.com/haxtheweb/haxcms-nodejs" target="_blank">HAXcms (nodejs)</a></li>
<li><a href="https://github.com/haxtheweb/haxcms-php" target="_blank">HAXcms (php)</a></li>
<li><a href="https://github.com/haxtheweb/create" target="_blank">npm init @haxtheweb</a></li>
<li><a href="https://github.com/haxtheweb/desktop" target="_blank">HAX Desktop</a></li>
</ul>
</div>
<div id="app"></div>
<script type="module" src="/main.js"></script>
</body>
Expand Down
96 changes: 2 additions & 94 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 32 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,40 @@
padding: 0;
overflow-y: hidden;
}
#top {
width: 100%;
background-color: black;
}
ul {
margin: 0 auto;
display: table;
padding: 0;
font-size: 20px;
font-weight: bold;
font-family: monospace;
}

ul li {
display: inline-flex;
list-style: none;
padding: 0;
margin: 8px;
}
ul li {
color: yellow;
padding: 4px;
background-color: #444444;
}
ul li a {
color: white;
}
a:hover, a:focus {
outline: yellow 2px solid;
background-color: black;
}

iframe {
height: 90vh;
height: 84vh;
width: 100%;
border: none;
background-color: transparent;
Expand Down

0 comments on commit 6d964ac

Please sign in to comment.