Initial commit

This commit is contained in:
Hugo Locurcio
2020-02-26 19:56:46 +01:00
commit f69e63d931
10 changed files with 155 additions and 0 deletions

BIN
static/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

45
static/main.css Normal file
View File

@@ -0,0 +1,45 @@
:root {
--body-background-color: hsl(0, 0%, 100%);
--body-color: hsl(0, 0%, 25%);
}
@media (prefers-color-scheme: dark) {
:root {
--body-background-color: hsl(0, 0%, 20%);
--body-color: hsl(0, 0%, 85%);
}
}
body {
background-color: var(--body-background-color);
color: var(--body-color);
/* Use a modern font stack inspired by Bootstrap 4. */
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
table {
border-collapse: collapse;
}
td {
border: 1px solid hsla(0, 0%, 50%, 50%);
padding: 0.25rem 0.5rem;
}
tr:hover {
background-color: hsla(0, 0%, 50%, 25%);
}
tr:nth-child(even) {
background-color: hsla(0, 0%, 50%, 10%);
}
tr:nth-child(even):hover {
background-color: hsla(0, 0%, 50%, 35%);
}
/* Align class names to the right for better readability and highlight them. */
td:first-child {
font-weight: bold;
text-align: right;
}