summaryrefslogtreecommitdiff
path: root/site/style.css (follow)
Commit message (Collapse)AuthorAgeFilesLines
* add date answer spacestuebinm2021-04-121-0/+1
| | | | | | | | | | for now, this is just a simple date picker done via the html input type "date". Unfortunately, that's not supported by Safari, so the rust util now prints out a warning if it's used. I'm not sure if there's any other reasonable option which would go around this that's not "using a web framework" or "hacking a fallback date picker which just consists of a couple of combo boxes".
* site: add a rudimentary dark modestuebinm2021-04-081-0/+26
| | | | | | | | | | This is a very simple, very high-contrast dark mode (for now). However, not all default ui elements seem to respect it by default — i.e. textareas stay entirely white by default and require additional theming. I'm not sure if this is my system stlye or firefox interfering, but for now I've added custom css rules which at least make text areas black. Buttons and checkboxes are still white, however.
* site: better error messagesstuebinm2021-04-081-0/+4
| | | | | | | this includes styling error messages red, and displaying error messages in case not all answers were answered as required (for now, this just means that not selecting any option in radio buttons is disallowed in general, as so far there are no corresponding config fields).
* site: sensible sizes for textareasstuebinm2021-04-071-0/+7
|
* simple forms with simple encryptionstuebinm2021-04-041-0/+21
this depends on age stuffed into web assembly, which is not yet part of this repository. The idea is to have a web app (which is a static html page + js / wasm) and a set of (optionally encrypted) json files which describe surveys, which the main site can download on demand.