2024-08-26 22:01:24 +00:00
|
|
|
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@500&display=swap");
|
|
|
|
|
|
|
|
/* https://tailwindcss.com/docs/customizing-colors#default-color-palette */
|
|
|
|
:root {
|
|
|
|
--bg: #ede9fe;
|
|
|
|
--table: #c4b5fd;
|
2024-08-26 22:25:15 +00:00
|
|
|
--text-footer: #475569;
|
|
|
|
--text: #2e1065;
|
2024-08-26 22:01:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
:root {
|
|
|
|
--bg: #0f172a;
|
|
|
|
--table: #334155;
|
2024-08-26 22:25:15 +00:00
|
|
|
--text-footer: #94a3b8;
|
|
|
|
--text: #f1f5f9;
|
2024-08-26 22:01:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a:link {
|
|
|
|
color: #3b82f6;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: #8b5cf6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: "Fira Code", monospace;
|
|
|
|
font-optical-sizing: auto;
|
|
|
|
font-size: 16px;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
|
|
background-color: var(--bg);
|
|
|
|
color: var(--text);
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
border: 2px var(--table) solid;
|
|
|
|
padding: 5px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
color: var(--text-footer);
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -10px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
|
|
|
margin: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|