Files
piphoto/docs/lut.html

41 lines
653 B
HTML
Raw Permalink Normal View History

2017-08-06 15:47:12 +00:00
<html>
<head>
<title>LUT experiment</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono');
table {
font-family: 'Roboto Mono';
border-style: solid;
border-width: 3px;
border-collapse: collapse;
margin: 10px;
}
th, td {
border-style: solid;
border-width: 1px;
padding: 5px;
}
2017-08-06 18:51:55 +00:00
.swatch {
width: 5em;
text-align: center;
font-weight: bold;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: white;
}
2017-08-06 15:47:12 +00:00
</style>
</head>
<body>
<div id="container"></div>
<script src="lut.js"></script>
<script>
new LutExperiment(document.getElementById("container"));
</script>
</body>
</html>