first commit

This commit is contained in:
Robert Nasarek 2022-08-25 13:30:44 +02:00
commit 5ada72873f
30 changed files with 1286 additions and 0 deletions

3
src/assets/css/App.css Normal file
View file

@ -0,0 +1,3 @@
/* Main CSS file */
@import '_example/_example.css';

View file

@ -0,0 +1,22 @@
/* Example stylesheet */
@media screen and (prefers-color-scheme: light), screen and (prefers-color-scheme: no-preference) {
/* Light theme */
body{
color: #000;
background-color: #fff;
}
}
@media screen and (prefers-color-scheme: dark) {
/* Dark theme */
body {
color: #fff;
background-color: #000;
}
}
h1 {
font-family: Helvetica, Arial, sans-serif;
font-size: 21px;
font-weight: 200;
}