This commit is contained in:
2026-08-08 19:05:08 +03:30
commit 30bd9fc01c
102 changed files with 14450 additions and 0 deletions

41
src/index.css Normal file
View File

@@ -0,0 +1,41 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
b, strong {
font-weight: bold;
}
#question ol, #question ul,
#answer ol, #answer ul {
@apply list-disc list-inside;
@apply ps-4 m-2;
}
#question table, #question img,
#answer table, #answer img {
@apply mx-auto;
}
#question table tr, #question table td,
#answer table tr, #answer table td {
@apply border-collapse border border-black;
@apply text-center p-1;
}
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}