20 lines
568 B
CSS
20 lines
568 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
|
|
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
|
|
@import "tailwindcss";
|
|
@plugin "daisyui" {
|
|
themes: cyberpunk --default;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
font-family: "Roboto", Verdana, serif;
|
|
}
|
|
|
|
.hero {
|
|
background-image: url(./background.jpg);
|
|
|
|
@supports (background-image: url(./background.webp)) {
|
|
background-image: url(./background.webp);
|
|
}
|
|
}
|