#56 Add logo and favicon (#205)

This does the following:
* Adds logo
* Adds favicon
* Creates css directory in dist
* Creates img directory in dist
* Updates /lib/page.tsx to use helmet to incporate the logo, favicon and style.css file
* adds a new file .gitattributes to make Windows use Linux line endings per https://prettier.io/docs/en/options.html

Co-authored-by: Webaissance <git@webais.com>
pull/206/head
Webaissance 2021-07-11 09:04:10 -07:00 zatwierdzone przez GitHub
rodzic a8b1c5e254
commit 86a39b56e0
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
6 zmienionych plików z 217 dodań i 172 usunięć

1
.gitattributes vendored 100644
Wyświetl plik

@ -0,0 +1 @@
* text=auto eol=lf

173
dist/css/style.css vendored 100644
Wyświetl plik

@ -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,<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;
}
/** Stupid class we're using instead of <p> 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;
}

BIN
dist/img/mystic-symbolic-icon.png vendored 100644

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 11 KiB

File diff suppressed because one or more lines are too long

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 31 KiB

171
dist/index.html vendored
Wyświetl plik

@ -1,175 +1,4 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Mystic Symbolic</title>
<style>
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;
}
.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,<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;
}
/** Stupid class we're using instead of <p> 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;
}
</style>
<noscript>
<p>Alas, you need JavaScript to peruse this page.</p>
</noscript>

Wyświetl plik

@ -68,10 +68,21 @@ export const Page: React.FC<PageProps> = ({ title, children }) => {
return (
<div className="page">
<Helmet>
<meta charSet="utf-8" />
<title>{fullTitle}</title>
<link rel="icon" href="img/mystic-symbolic-icon.png" />
<link rel="stylesheet" href="css/style.css" />
</Helmet>
<header>
<h1>{fullTitle}</h1>
<h1>
<img
src="img/mysticsymbolic-logo-sun.svg"
alt="Mystic Symbolic"
title="Mystic Symbolic"
className="MSlogo"
/>{" "}
{title}
</h1>
<Navbar />
</header>
{children}