1
0
mirror of https://github.com/robonen/canvas-3d.git synced 2026-03-20 19:04:41 +00:00

Configuration

This commit is contained in:
2022-10-19 00:41:53 +07:00
parent 26158d44b4
commit c3bf083071
10 changed files with 102 additions and 30 deletions

View File

@@ -0,0 +1,3 @@
body {
margin: 0;
}

View File

@@ -0,0 +1,4 @@
:root {
--background-color-primary: #f3f3f3;
--font-color-primary: #3d3d3d;
}

View File

@@ -1 +1,14 @@
@import 'reset';
@import 'variables';
@import 'fonts';
html, body, #__nuxt {
width: 100%;
height: 100%;
}
body {
background-color: var(--background-color-primary);
color: var(--font-color-primary);
font-family: Formular, Helvetica, Arial, sans-serif;
}