first commit 😇

This commit is contained in:
2022-03-29 23:30:23 +02:00
commit 0fd5a49574
22 changed files with 5355 additions and 0 deletions

51
src/assets/base.css Normal file
View File

@ -0,0 +1,51 @@
/* color palette from <https://github.com/vuejs/theme> */
:root {
--color-white: #ffffff;
--color-black: #181818;
--header-size-small: 64px;
--header-size-big: 128px;
}
/* semantic color variables for this project */
:root {
--color-background: #EDE0D4;
--color-text: var(--color-black);
--header-size: var(--header-size-small);
}
/* @media (prefers-color-scheme: dark) {
:root {
--color-background: var(--color-black);
--color-text: var(--color-white);
}
} */
@media (min-width: 1024px) {
:root {
--header-size: var(--header-size-big);
}
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
position: relative;
font-weight: normal;
}
body {
min-height: 100vh;
max-height: 100vh;
color: var(--color-text);
background: var(--color-background);
line-height: 1.6;
font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
font-size: 16px;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

1
src/assets/logo.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 261.76 226.69" xmlns:v="https://vecta.io/nano"><path d="M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z" fill="#41b883"/><path d="M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z" fill="#34495e"/></svg>

After

Width:  |  Height:  |  Size: 308 B