95 lines
2.3 KiB
HTML
95 lines
2.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<style>
|
|
:root {
|
|
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
font-weight: 400;
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100%;
|
|
background-color: #f2f6f5;
|
|
z-index: 10;
|
|
}
|
|
|
|
input[type='submit'] {
|
|
width: 100%;
|
|
font-size: 20px;
|
|
margin-top: 20px;
|
|
background-color: #05345f;
|
|
font-weight: 700;
|
|
color: white;
|
|
padding: 10px;
|
|
-webkit-appearance: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
input[type='submit']:hover {
|
|
cursor: pointer;
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
body a {
|
|
text-decoration: none;
|
|
color: #06345f;
|
|
border-bottom: 3px solid #06345f;
|
|
}
|
|
|
|
body a:hover {
|
|
background-color: #06345f;
|
|
color: #ffffff;
|
|
}
|
|
|
|
:is(h1, h2, h3, h4, h5, h6) {
|
|
color: #06345f;
|
|
}
|
|
|
|
strong {
|
|
color: #06345f;
|
|
}
|
|
|
|
ul li::marker {
|
|
color: #06345f;
|
|
}
|
|
</style>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="shortcut icon" href="/favicon.ico" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
<link rel="manifest" href="/site.webmanifest" />
|
|
<link rel="canonical" href="https://embroideryviewer.xyz/" />
|
|
%sveltekit.head%
|
|
</head>
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|