diff options
author | Arjun Satarkar <me@arjunsatarkar.net> | 2023-06-22 05:40:59 +0000 |
---|---|---|
committer | Arjun Satarkar <me@arjunsatarkar.net> | 2023-06-22 05:40:59 +0000 |
commit | 589df8813ea7732501fb551296d8fd45c4186217 (patch) | |
tree | 670d915991325c3f1c270be35ad82ba69d1e5cce /static | |
parent | 69a356d177ad98941502b621754d011383e160d9 (diff) | |
download | tagrss-589df8813ea7732501fb551296d8fd45c4186217.tar tagrss-589df8813ea7732501fb551296d8fd45c4186217.tar.gz tagrss-589df8813ea7732501fb551296d8fd45c4186217.zip |
Improve CLI arguments, add basic tag support, add CSS
Diffstat (limited to 'static')
-rw-r--r-- | static/fonts/OpenSans/OpenSans-Italic-VariableFont_wdth,wght.ttf | bin | 0 -> 580356 bytes | |||
-rw-r--r-- | static/fonts/OpenSans/OpenSans-VariableFont_wdth,wght.ttf | bin | 0 -> 529700 bytes | |||
-rw-r--r-- | static/styles/main.css | 48 |
3 files changed, 48 insertions, 0 deletions
diff --git a/static/fonts/OpenSans/OpenSans-Italic-VariableFont_wdth,wght.ttf b/static/fonts/OpenSans/OpenSans-Italic-VariableFont_wdth,wght.ttf Binary files differnew file mode 100644 index 0000000..5bda9cc --- /dev/null +++ b/static/fonts/OpenSans/OpenSans-Italic-VariableFont_wdth,wght.ttf diff --git a/static/fonts/OpenSans/OpenSans-VariableFont_wdth,wght.ttf b/static/fonts/OpenSans/OpenSans-VariableFont_wdth,wght.ttf Binary files differnew file mode 100644 index 0000000..e4142bf --- /dev/null +++ b/static/fonts/OpenSans/OpenSans-VariableFont_wdth,wght.ttf diff --git a/static/styles/main.css b/static/styles/main.css new file mode 100644 index 0000000..deea098 --- /dev/null +++ b/static/styles/main.css @@ -0,0 +1,48 @@ +@font-face { + font-family: "Open Sans"; + src: url("/static/fonts/OpenSans/OpenSans-VariableFont_wdth,wght.ttf") format("truetype-variations"); + font-weight: 100 1000; +} + +@font-face { + font-family: "Open Sans"; + src: url("/static/fonts/OpenSans/OpenSans-Italic-VariableFont_wdth,wght.ttf") format("truetype-variations"); + font-style: italic; + font-weight: 100 1000; +} + +:root { + font-family: "Open Sans", sans-serif; +} + +table { + width: 100%; + border-collapse: collapse; + border: 1px solid black; +} + +th, td { + border: 1px solid black; +} + +.hover-help { + cursor: help; + user-select: none; + padding-left: 0.2em; +} + +@media (pointer: coarse), (hover: none) { + div.side-by-side-help-container { + display: table-row; + } + + div.side-by-side-help-container > * { + display: table-cell; + } + + div.side-by-side-help-container > .hover-help:focus::after { + content: attr(title); + font-size: small; + padding-left: 0.2em; + } +} |