58 lines
No EOL
984 B
HTML
58 lines
No EOL
984 B
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>
|
|
:root {
|
|
--footer-height: calc(68px + 20px + 20px);
|
|
--accent-color: #213c8b;
|
|
--pianello-red: #de0e1b;
|
|
--pianello-yellow: #f6ae04;
|
|
--pianello-blue: #213c8b;
|
|
--card-background-color: #f9f4f1;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0px;
|
|
background-color: #fff;
|
|
font-family: 'Roboto-Regular';
|
|
display: grid;
|
|
place-items: center;
|
|
grid-template-rows: var(--footer-height) auto var(--footer-height);
|
|
}
|
|
|
|
header,
|
|
main,
|
|
footer {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: grid;
|
|
place-items: center;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
|
|
</html> |