67 lines
1.6 KiB
HTML
67 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="Cache-Control" content="no-cache">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon.png">
|
|
<title>Fluid Simulation - WhykiohTools</title>
|
|
|
|
<style>
|
|
* {
|
|
user-select: none;
|
|
}
|
|
|
|
html, body {
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
canvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
|
|
.dg {
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.dg .property-name {
|
|
overflow: visible;
|
|
}
|
|
|
|
.bigFont {
|
|
font-size: 150%;
|
|
color: #8C8C8C;
|
|
}
|
|
|
|
.cr.function.appBigFont {
|
|
font-size: 150%;
|
|
line-height: 27px;
|
|
background-color: #2F4F4F;
|
|
}
|
|
|
|
.cr.function.appBigFont .property-name {
|
|
float: none;
|
|
}
|
|
|
|
.cr.function.appBigFont .icon {
|
|
position: sticky;
|
|
bottom: 27px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas></canvas>
|
|
<script src="./script.js"></script>
|
|
<a href="javascript:history.back()" img="img/back_arrow.png"></a>
|
|
</body>
|
|
</html> |