first commit
This commit is contained in:
commit
5ada72873f
30 changed files with 1286 additions and 0 deletions
3
src/assets/css/App.css
Normal file
3
src/assets/css/App.css
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
/* Main CSS file */
|
||||
|
||||
@import '_example/_example.css';
|
||||
22
src/assets/css/_example/_example.css
Normal file
22
src/assets/css/_example/_example.css
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue