diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2021-01-09 15:22:27 -0500 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2021-01-09 15:22:27 -0500 |
| commit | 602790e2ca33ad7f22235bf2ae548cef7db8b814 (patch) | |
| tree | f79fc9a7f6e019a3f2a774e13d030937b3ae9f86 /cmd/web/css.go | |
| parent | e31c9168627c040317e5cc8566724f88910439ae (diff) | |
| download | steam-export-602790e2ca33ad7f22235bf2ae548cef7db8b814.tar.gz steam-export-602790e2ca33ad7f22235bf2ae548cef7db8b814.tar.xz | |
Add a progress bar to the UI for installation via HTTP. Uses polling, but whatever.
Diffstat (limited to 'cmd/web/css.go')
| -rw-r--r-- | cmd/web/css.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cmd/web/css.go b/cmd/web/css.go index 3b772de..ec7267a 100644 --- a/cmd/web/css.go +++ b/cmd/web/css.go @@ -72,6 +72,22 @@ h1,h2,h3 { } } + +#status { + width: 100%; + background-color: #ddd; +} + +.installBar { + width: 0%; + height: 30px; + /* background-color: #4CAF50; */ + background-color: #268bd2; + text-align: center; + line-height: 30px; + color: white; +} + `)) if err != nil { |
