49 lines
984 B
HTML
49 lines
984 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Marching Cubes Test</title>
|
||
|
<style>
|
||
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
.overlay {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
padding: 1rem;
|
||
|
background-color: rgba(240, 248, 255, 0.26);
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
font-size: 1.2rem;
|
||
|
}
|
||
|
.overlay .slider, .overlay .checkbox {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
.overlay .slider {
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
.overlay label {
|
||
|
min-width: 100px;
|
||
|
}
|
||
|
.overlay .slider span {
|
||
|
min-width: 32px;
|
||
|
text-align: right;
|
||
|
}
|
||
|
.overlay input[type=checkbox] {
|
||
|
width: 22px;
|
||
|
height: 22px;
|
||
|
}
|
||
|
.overlay .spacer {
|
||
|
height: 1rem;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
</body>
|
||
|
</html>
|