Upgrade to latest svelte version and remove widgets
parent
64d2c41b22
commit
f4f0b034f6
@ -1,13 +0,0 @@
|
||||
.DS_Store
|
||||
node_modules
|
||||
/build
|
||||
/.svelte-kit
|
||||
/package
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# Ignore files for PNPM, NPM and YARN
|
||||
pnpm-lock.yaml
|
||||
package-lock.json
|
||||
yarn.lock
|
@ -1,20 +0,0 @@
|
||||
module.exports = {
|
||||
root: true,
|
||||
parser: '@typescript-eslint/parser',
|
||||
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
|
||||
plugins: ['svelte3', '@typescript-eslint'],
|
||||
ignorePatterns: ['*.cjs'],
|
||||
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
|
||||
settings: {
|
||||
'svelte3/typescript': () => require('typescript')
|
||||
},
|
||||
parserOptions: {
|
||||
sourceType: 'module',
|
||||
ecmaVersion: 2020
|
||||
},
|
||||
env: {
|
||||
browser: true,
|
||||
es2017: true,
|
||||
node: true
|
||||
}
|
||||
};
|
@ -1,13 +0,0 @@
|
||||
.DS_Store
|
||||
node_modules
|
||||
/build
|
||||
/.svelte-kit
|
||||
/package
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# Ignore files for PNPM, NPM and YARN
|
||||
pnpm-lock.yaml
|
||||
package-lock.json
|
||||
yarn.lock
|
@ -1,9 +0,0 @@
|
||||
{
|
||||
"useTabs": true,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "none",
|
||||
"printWidth": 100,
|
||||
"plugins": ["prettier-plugin-svelte"],
|
||||
"pluginSearchDirs": ["."],
|
||||
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
{
|
||||
"$schema": "https://biomejs.dev/schemas/1.3.3/schema.json",
|
||||
"organizeImports": {
|
||||
"enabled": true
|
||||
},
|
||||
"linter": {
|
||||
"enabled": true,
|
||||
"rules": {
|
||||
"recommended": true
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,70 @@
|
||||
@use "./colors.scss";
|
||||
@import "https://cdn.jsdelivr.net/npm/remixicon@3.2.0/fonts/remixicon.css";
|
||||
|
||||
body {
|
||||
font-family: "Lexend","Noto Sans", "Verdana", sans-serif;
|
||||
background-color: colors.$background;
|
||||
color: colors.$text;
|
||||
}
|
||||
|
||||
img {
|
||||
image-orientation: from-image;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration-line: underline;
|
||||
text-decoration-color: colors.$secondary;
|
||||
text-decoration-thickness: .125em;
|
||||
color: colors.$text;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 1px solid colors.$highlight;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: colors.$highlight;
|
||||
color: colors.$highlight-text;
|
||||
border: none;
|
||||
height: 2.5em;
|
||||
padding: 0.5em;
|
||||
border-radius: 0.5em;
|
||||
transition-duration: 0.25s;
|
||||
font-size: 1em;
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
background-color: lighten(colors.$highlight, 5%);
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-color: darken(colors.$highlight, 5%);
|
||||
}
|
||||
}
|
||||
|
||||
.float-left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.float-right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
|
||||
.card {
|
||||
width: 60%;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
@media (max-width: 500px) {
|
||||
.card {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 500px) and (max-width: 1000px) {
|
||||
.card {
|
||||
width: 75%;
|
||||
}
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
$background: rgba(14, 1, 20, 1);
|
||||
|
||||
$highlight: white;
|
||||
$secondary: white;
|
||||
|
||||
$highlight-text: black;
|
||||
$text: white;
|
||||
$inactive-text: lighten($text, 20%);
|
||||
$highlight-inactive-text: darken($highlight-text, 20%);
|
||||
|
||||
$blue: #848fab;
|
||||
$yellow: #a7ad86;
|
||||
$red: #a88b83;
|
@ -0,0 +1,23 @@
|
||||
<script lang="ts">
|
||||
import "../app.scss";
|
||||
|
||||
import { onNavigate } from "$app/navigation";
|
||||
|
||||
export const csr = false;
|
||||
export const prerender = true;
|
||||
|
||||
onNavigate((navigation) => {
|
||||
// @ts-expect-error
|
||||
if (!document.startViewTransition) return;
|
||||
|
||||
return new Promise((resolve) => {
|
||||
// @ts-expect-error
|
||||
document.startViewTransition(async () => {
|
||||
resolve();
|
||||
await navigation.complete;
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<slot />
|
@ -1,2 +0,0 @@
|
||||
export const csr = false;
|
||||
export const prerender = true;
|
Loading…
Reference in New Issue