This repository has been archived on 2023-08-28. You can view files and clone it, but cannot push or open issues/pull-requests.
memejoin-svelte/src/app.html

71 lines
2.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" />
<title>MemeJoin - Dashboard</title>
%sveltekit.head%
</head>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
background-color: #313052;
font-family: 'Cantarell';
}
h1, h2, h3, h4, h5, p, label, li {
color: lightgrey;
}
div#cardContent {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
width: 85%;
justify-items: center;
background-color: #323259;
box-shadow: 1px 3px 15px 1px #1f1f36;
margin: 2em;
padding: 2em;
}
div#list {
display: flex;
width: 85%;
border-radius: 4px;
flex-direction: column;
align-items: center;
background-color: #323259;
padding: 1em;
}
button, #list-item {
color: lightgray;
border-style: none;
border-radius: 4px;
background-image: linear-gradient(0deg, #1f1f36, #23233d);
padding: 0.5em 0.5em 0.5em;
margin: 0 0 16px 0px;
width: 100%;
user-select: none;
}
button:hover, #list-item:hover {
background-image: linear-gradient(0deg, #34345b, #393963);
box-shadow: 1px 3px 15px 1px #1f1f36;
cursor: pointer;
}
#list-item > input[type="checkbox"]:checked {
}
#list-item:has(input[type="checkbox"]:checked) {
background-image: linear-gradient(0deg, #40406e, #444475);
}
</style>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>