diff options
author | Julien Dessaux | 2021-04-05 20:58:28 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-04-05 20:58:28 +0200 |
commit | 309d17b921f75b16298cfe88ada9ba89bf646ac5 (patch) | |
tree | dd65823647fbb0769a851f34948af131b097fc60 /internal/webui/static | |
parent | Fixed scope of test helpers in navitia_api_client package (diff) | |
download | trains-309d17b921f75b16298cfe88ada9ba89bf646ac5.tar.gz trains-309d17b921f75b16298cfe88ada9ba89bf646ac5.tar.bz2 trains-309d17b921f75b16298cfe88ada9ba89bf646ac5.zip |
Added basic webui to show results
Diffstat (limited to 'internal/webui/static')
-rw-r--r-- | internal/webui/static/favicon.png | bin | 0 -> 1044 bytes | |||
-rw-r--r-- | internal/webui/static/main.css | 30 |
2 files changed, 30 insertions, 0 deletions
diff --git a/internal/webui/static/favicon.png b/internal/webui/static/favicon.png Binary files differnew file mode 100644 index 0000000..7668d76 --- /dev/null +++ b/internal/webui/static/favicon.png diff --git a/internal/webui/static/main.css b/internal/webui/static/main.css new file mode 100644 index 0000000..7cb5779 --- /dev/null +++ b/internal/webui/static/main.css @@ -0,0 +1,30 @@ +* { + box-sizing: border-box; +} +body { + font-family: open sans,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol; + font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + display: grid; + grid-template-rows: auto 1fr auto; +} +@media only screen and (min-width: 60rem) { + body { + max-width:60rem; + margin-left: auto; + margin-right: auto; + } +} +table { + border-collapse: collapse; +} +th, td { + text-align: center; + border-bottom: 1px solid #ddd; +} +th { + background-color: darkgray; + color: white; +} +tr:nth-child(even) { + background-color: #f2f2f2; +} |