queermandelbrot/dist/index.html

55 lines
1.1 KiB
HTML
Raw Normal View History

2024-12-07 21:15:59 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Queer Mandelbrot</title>
<style>
#mandelbrot {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
2024-12-13 12:34:09 +00:00
#menu {
position: absolute;
top: 0px;
left: 0px;
font-size: 2vh;
font-family: sans-serif;
}
ul {
padding: 0px;
margin: 0px;
}
li {
list-style-type: none;
}
li a {
display: inline-block;
padding: 0.5vh 0 0.5vh 2vh;
width: 10vh;
text-decoration: none;
color: white;
background-color: rgba(0, 0, 0, 0.5);
transition: background-color 0.5s, color 0.5s, padding-left 0.5s;
}
li a:hover, a.selected {
padding-left: 4vh;
color: black;
background-color: rgba(255, 255, 255, 0.5);
}
</style>
2024-12-07 21:15:59 +00:00
</head>
<body>
<canvas id="mandelbrot" width="600" height="400"></canvas>
2024-12-13 12:34:09 +00:00
<div id="menu">
<ul>
<li><a class="rainbow" href="?rainbow">Rainbow</a></li>
<li><a class="trans" href="?trans">Trans</a></li>
<li><a class="lesbian" href="?lesbian">Lesbian</a></li>
</ul>
</div>
2024-12-07 21:15:59 +00:00
<script src="./queermandelbrot.js"></script>
</body>
</html>