44 lines
1.0 KiB
HTML
44 lines
1.0 KiB
HTML
<!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" />
|
|
%sveltekit.head%
|
|
</head>
|
|
<style>
|
|
body {
|
|
background-color: #313052;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, p, label, li {
|
|
color: lightgrey;
|
|
}
|
|
|
|
div#list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
#list-item {
|
|
border-style: solid;
|
|
border-radius: 4px;
|
|
border-color: #1f1f36;
|
|
background-color: #1f1f36;
|
|
padding: 0.5em 0.5em 0.5em;
|
|
margin: 0 0 16px 0px;
|
|
}
|
|
|
|
#list-item > input[type="checkbox"] {
|
|
display: none;
|
|
}
|
|
#list-item:has(input[type="checkbox"]:checked) {
|
|
background-color: #40406e;
|
|
}
|
|
</style>
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|