diff --git a/web/clock.html b/web/clock.html new file mode 100644 index 0000000000000000000000000000000000000000..7719117bd8db4884f6557af757dd4053922c8b35 --- /dev/null +++ b/web/clock.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset='utf-8'> + <meta name='viewport' content='width=device-width,initial-scale=1'> + + <title>Aura Engine - Studio Clock</title> + + <link rel='icon' type='image/png' href='/favicon.png'> + <link rel='stylesheet' href='/css/aura.css'> + <link rel='stylesheet' href='/css/aura-clock-bundle.css'> + + <script defer src='/js/aura-clock-bundle.js'></script> +</head> + +<body style="background-color: black;"> +</body> +</html> diff --git a/web/css/aura.css b/web/css/aura.css new file mode 100644 index 0000000000000000000000000000000000000000..ec905f5ece9f725a3a3c33400392da8b7bf9b123 --- /dev/null +++ b/web/css/aura.css @@ -0,0 +1,66 @@ +html, body { + position: relative; + width: 100%; + height: 100%; +} + +body { + color: #333; + margin: 0; + padding: 8px; + box-sizing: border-box; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; +} + +a { + color: rgb(0,100,200); + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +a:visited { + color: rgb(0,80,160); +} + +label { + display: block; +} + +input, button, select, textarea { + font-family: inherit; + font-size: inherit; + padding: 0.4em; + margin: 0 0 0.5em 0; + box-sizing: border-box; + border: 1px solid #ccc; + border-radius: 2px; +} + +input:disabled { + color: #ccc; +} + +input[type="range"] { + height: 0; +} + +button { + color: #333; + background-color: #f4f4f4; + outline: none; +} + +button:disabled { + color: #999; +} + +button:not(:disabled):active { + background-color: #ddd; +} + +button:focus { + border-color: #666; +} diff --git a/web/favicon.png b/web/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..b210b336cd8f214dd83f2ea3dc6ce6d9cc413937 Binary files /dev/null and b/web/favicon.png differ