diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..94f480d --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf \ No newline at end of file diff --git a/dist/css/style.css b/dist/css/style.css new file mode 100644 index 0000000..2dffc83 --- /dev/null +++ b/dist/css/style.css @@ -0,0 +1,173 @@ +html, body { + margin: 0; + padding: 0; + font-family: "Calibri", "Arial", "Helvetica Neue", sans-serif; + overflow: hidden; +} + +.page { + display: grid; + column-gap: 8px; + padding: 8px; + box-sizing: border-box; + height: 100vh; + width: 100vw; + grid-template-columns: auto 20em; + grid-template-rows: 3em auto 3em; + grid-template-areas: + "header header" + "canvas sidebar" + "footer footer"; +} + +header { + grid-area: header; + display: flex; +} + +header h1 { + margin: 0; + flex-grow: 1; +} + +.MSlogo { + height:50px; + vertical-align:middle; + margin-bottom: 3px; +} + +.sidebar { + grid-area: sidebar; + overflow-y: auto; +} + +footer { + grid-area: footer; +} + +select, input[type="text"] { + padding: 8px; +} + +.checkerboard-bg { + /* https://codepen.io/pascalvgaal/pen/jPXPNP/ */ + background: #eee url('data:image/svg+xml,'); + 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; +} + +/** Stupid class we're using instead of

to avoid ValidateDOMNesting warnings. */ +.thingy { + margin-top: 10px; + margin-bottom: 10px; +} + +.thingy:first-child { + margin-top: 0; +} + +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; + padding-right: 0; + margin-right: 0; +} + +.flex-widget { + display: flex; + flex-direction: column; +} + +.flex-widget label { + margin-bottom: 8px; +} + +.canvas { + grid-area: canvas; + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; +} + +.canvas.scrollable { + display: block; + overflow: auto; +} + +.sidebar .disabled { + color: gray; +} + +.sidebar label.checkbox { + display: block; + margin-top: 10px; + margin-bottom: 10px; +} + +.sidebar .color-widget { + display: flex; +} + +.sidebar .color-widget label { + flex-grow: 1; +} + +.sidebar .numeric-slider { + display: flex; + flex-direction: column; +} + +.sidebar .numeric-slider .slider { + display: flex; +} + +.sidebar .numeric-slider .slider input { + flex-basis: 90%; +} + +.sidebar .numeric-slider .slider .slider-value { + /** + * We want to keep a minimum width for the value or else + * there will be a "jitter" effect where the slider will + * contract as a result of the label getting smaller, + * which will then change the value of the slider, which + * will then change the width of the label, ad infinitum. + */ + min-width: 2em; +} + +.overlay-wrapper { + position: fixed; + display: flex; + background-color: rgba(0, 0, 0, 0.9); + flex-direction: column; + align-items: center; + justify-content: center; + color: white; + top: 0; + left: 0; + bottom: 0; + right: 0; +} \ No newline at end of file diff --git a/dist/img/mystic-symbolic-icon.png b/dist/img/mystic-symbolic-icon.png new file mode 100644 index 0000000..229c516 Binary files /dev/null and b/dist/img/mystic-symbolic-icon.png differ diff --git a/dist/img/mysticsymbolic-logo-sun.svg b/dist/img/mysticsymbolic-logo-sun.svg new file mode 100644 index 0000000..31f3d9f --- /dev/null +++ b/dist/img/mysticsymbolic-logo-sun.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dist/index.html b/dist/index.html index 2614311..51c36ac 100644 --- a/dist/index.html +++ b/dist/index.html @@ -1,175 +1,4 @@ - -Mystic Symbolic -

Alas, you need JavaScript to peruse this page.

diff --git a/lib/page.tsx b/lib/page.tsx index 59ab460..1b49da8 100644 --- a/lib/page.tsx +++ b/lib/page.tsx @@ -68,10 +68,21 @@ export const Page: React.FC = ({ title, children }) => { return (
+ {fullTitle} + +
-

{fullTitle}

+

+ Mystic Symbolic{" "} + {title} +

{children}