quicknotes/frontend/src/app.html

54 lines
1.1 KiB
HTML
Raw Normal View History

2025-02-17 14:33:55 +01:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<link rel="stylesheet" href="/css/bulma.min.css" />
2025-02-17 14:33:55 +01:00
<style>
body.dark-mode {
background-color: #1a1a1a;
color: #e6e6e6;
}
body.dark-mode .button.is-light {
background-color: #363636;
color: #e6e6e6;
}
body.dark-mode .input,
2025-02-17 14:33:55 +01:00
body.dark-mode .textarea {
background-color: #2b2b2b;
color: #e6e6e6;
border-color: #4a4a4a;
}
body.dark-mode .notification.is-danger {
background-color: #ff3860;
color: #fff;
}
body.dark-mode .title {
color: #e6e6e6;
}
body.dark-mode .label {
color: #e6e6e6;
}
body.dark-mode .content {
color: #e6e6e6;
}
@media (max-width: 768px) {
.section {
padding: 1.5rem 1rem;
}
.textarea {
min-height: 200px;
}
}
</style>
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>