This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
/* https://developer.apple.com/design/human-interface-guidelines/color#iOS-iPadOS-system-colors */ | |
/* freeze 2024-07-25 */ | |
--light-red: rgb(255, 59, 48); | |
--dark-red: rgb(255, 69, 58); | |
--light-accessible-red: rgb(215, 0, 21); | |
--dark-accessible-red: rgb(255, 105, 97); | |
--light-orange: rgb(255, 149, 0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* | |
!.gitignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Required packages: | |
* pnpm add @eslint/js @unocss/eslint-config eslint unocss -D | |
*/ | |
import js from '@eslint/js' | |
import pluginVue from 'eslint-plugin-vue' | |
import unocss from '@unocss/eslint-config/flat' | |
export default [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; | |
font-synthesis: none; | |
text-rendering: optimizeLegibility; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
-webkit-text-size-adjust: 100%; | |
} | |
html:not(.dark) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"tasks": { | |
"dev": "deno run --watch main.ts" | |
}, | |
"fmt": { | |
"semiColons": false, | |
"singleQuote": true, | |
"useTabs": true | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { parse as parseCsv } from 'https://deno.land/[email protected]/encoding/csv.ts' | |
const data = await parseCsv(await Deno.readTextFile('data.csv')) | |
const query = await parseCsv(await Deno.readTextFile('query.csv')) | |
if (import.meta.main) { | |
const Q = query.flatMap((row) => row) | |
const INDEX = { | |
name: 1, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import '_reset' | |
a | |
text-decoration: none | |
.dont-touch-me | |
user-select: none | |
[class*=view-] | |
position: relative |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* box sizing rules */ | |
*, | |
*::before, | |
*::after | |
box-sizing: border-box | |
/* remove default padding */ | |
ul, | |
ol | |
padding: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root = true | |
# set default settings | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
insert_final_newline = true | |
indent_style = tab | |
indent_size = 2 | |
trim_trailing_whitespace = true |