buttons on main page
This commit is contained in:
parent
77071c2e49
commit
dc26c4281b
2 changed files with 17 additions and 5 deletions
|
@ -32,7 +32,6 @@ p {
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|
||||||
user-select: none;
|
user-select: none;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
}
|
}
|
||||||
|
@ -56,6 +55,8 @@ body {
|
||||||
height: 768px;
|
height: 768px;
|
||||||
/*image-rendering: pixelated;*/
|
/*image-rendering: pixelated;*/
|
||||||
background: rgb(63, 63, 71);
|
background: rgb(63, 63, 71);
|
||||||
|
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
section#main {
|
section#main {
|
||||||
|
@ -68,3 +69,14 @@ section#main {
|
||||||
height: min(512px, 90vw);
|
height: min(512px, 90vw);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
background: rgb(44, 41, 53);
|
||||||
|
border-radius: 15px;
|
||||||
|
color: rgb(255,255,255);
|
||||||
|
display: inline-block;
|
||||||
|
text-decoration: none;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 10px;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
|
@ -11,10 +11,10 @@
|
||||||
<h1>UniButton</h1>
|
<h1>UniButton</h1>
|
||||||
<p>The <b>left mouse button</b> is the only input. No keyboard, moving the mouse, or anything else.</p>
|
<p>The <b>left mouse button</b> is the only input. No keyboard, moving the mouse, or anything else.</p>
|
||||||
<p>Click to launch... figure out the rest of the combos yourself.</p>
|
<p>Click to launch... figure out the rest of the combos yourself.</p>
|
||||||
<p><i>Created by <a href='https://zenoverse.net/'>Onez</a>. Join our <a
|
<a class='button' href='https://zenoverse.net/'>Created by Onez</a>
|
||||||
href='https://discord.gg/EpsRZrHswB'>Discord</a>!</i></p>
|
<a class='button' href='https://discord.gg/EpsRZrHswB'>Join our
|
||||||
<div>
|
Discord</a>
|
||||||
<canvas id='canvas'></canvas>
|
<canvas id='canvas'></canvas>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<script src='js/index.js' type="module"></script>
|
<script src='js/index.js' type="module"></script>
|
||||||
|
|
Loading…
Reference in a new issue