mysticsymbolic.github.io/index.html

100 wiersze
1.9 KiB
HTML
Czysty Zwykły widok Historia

2021-02-03 00:26:40 +00:00
<!DOCTYPE html>
<meta charset="utf-8">
2021-02-13 12:20:16 +00:00
<title>Mystic Symbolic</title>
2021-02-04 01:23:24 +00:00
<style>
html, body {
font-family: "Calibri", "Arial", "Helvetica Neue", sans-serif;
}
2021-02-06 13:11:20 +00:00
2021-03-29 11:58:50 +00:00
select, input[type="text"] {
padding: 8px;
}
2021-02-06 13:11:20 +00:00
.checkerboard-bg {
2021-02-06 13:13:56 +00:00
/* https://codepen.io/pascalvgaal/pen/jPXPNP/ */
2021-02-06 13:11:20 +00:00
background: #eee url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" fill-opacity=".1" ><rect x="200" width="200" height="200" /><rect y="200" width="200" height="200" /></svg>');
background-size: 20px 20px;
}
.hover-debug-helper {
font-family: "Consolas", "Monaco", monospace;
color: white;
background: rgba(0, 0, 0, 0.75);
padding: 4px;
margin-top: 4px;
margin-left: 4px;
}
2021-03-27 12:34:22 +00:00
/** Stupid class we're using instead of <p> to avoid ValidateDOMNesting warnings. */
.thingy {
margin-top: 10px;
margin-bottom: 10px;
}
ul.navbar {
display: flex;
list-style-type: none;
margin: 0;
padding: 0;
justify-content: flex-end;
}
ul.navbar li {
border-right: 1px solid gray;
margin-right: 8px;
padding-right: 8px;
}
ul.navbar li:last-child {
border-right: none;
}
.mandala-container {
position: relative;
}
.mandala-container .canvas {
display: flex;
width: 100%;
height: 85vh;
align-items: center;
justify-content: center;
overflow: hidden;
}
.mandala-container .sidebar {
position: absolute;
right: 0;
top: 0;
padding: 8px;
width: 20em;
background-color: rgba(255, 255, 255, 0.9);
}
.mandala-container .color-widget {
display: flex;
}
.mandala-container .color-widget label {
flex-grow: 1;
}
.mandala-container .numeric-slider {
display: flex;
flex-direction: column;
}
.mandala-container .numeric-slider .slider {
display: flex;
}
.mandala-container .numeric-slider .slider input {
flex-basis: 90%;
}
2021-02-04 01:23:24 +00:00
</style>
2021-02-04 00:11:34 +00:00
<noscript>
<p>Alas, you need JavaScript to peruse this page.</p>
</noscript>
<div id="app"></div>
<script src="lib/browser-main.tsx"></script>