Add tailwindcss, add first page
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
parent
db9fa44439
commit
2e98cb39f4
8 changed files with 1265 additions and 8 deletions
15
assets/css/tailwind.css
Normal file
15
assets/css/tailwind.css
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
:root {
|
||||
background-color: wheat;
|
||||
}
|
||||
|
||||
/* Dark mode */
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
background-color: #1E293B;
|
||||
color: antiquewhite;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue