1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-09 20:45:17 +02:00

Theme changing. Simple routing

This commit is contained in:
unknown 2021-05-07 18:30:06 +02:00
parent 573814ddac
commit 765418d3d2
19 changed files with 378 additions and 59 deletions

View file

@ -1,13 +1,16 @@
body {
* {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding: 0;
box-sizing: border-box;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
body {
--color-background: #2B2C56;
--color-primary: #EFF1FC;
--color-accent: #6677EB;
--space-p-x: 16px;
background-color: var(--color-background);
font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Roboto, sans-serif;
}