Skip to content

Commit

Permalink
feat: update readme, add screenshots and gif, fix colors
Browse files Browse the repository at this point in the history
  • Loading branch information
fuse314 committed Apr 7, 2024
1 parent 09df9eb commit 7e3fb78
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,11 @@ Program to keep DNS A and/or AAAA records updated for multiple DNS providers
- Variomedia.de
- Zoneedit
- **Want more?** [Create an issue for it](https://github.com/qdm12/ddns-updater/issues/new/choose)!
- Web User interface
- Web user interface (Desktop)
![Web UI](readme/webui-desktop.gif)

![Web UI](https://raw.githubusercontent.com/qdm12/ddns-updater/master/readme/webui.png)
- Web user interface (Mobile)
![Mobile Web UI](readme/webui-mobile.png)

- Send notifications with [**Shoutrrr**](https://containrrr.dev/shoutrrr/v0.8/services/overview/) using `SHOUTRRR_ADDRESSES`
- Container (Docker/K8s) specific features:
Expand Down
12 changes: 8 additions & 4 deletions internal/server/ui/static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
--link-color: #039;
--link-color-hover: #36c;
--success-color: #181;
--warn-color: #951;
--error-color: #811;
--progress-color: #818;
--footer-background: #eee;
--footer-link-color: #666;
--footer-link-color-hover: #777;
Expand All @@ -25,7 +27,9 @@
--link-color: #9cf;
--link-color-hover: #69c;
--success-color: #9f9;
--error-color: #f99;
--warn-color: #fb8;
--error-color: #f88;
--progress-color: #c7c;
--footer-background: #111;
--footer-link-color: #999;
--footer-link-color-hover: #888;
Expand Down Expand Up @@ -119,15 +123,15 @@ footer a:hover {
}

.uptodate {
color: var(--uptodate-color);
color: var(--success-color);
}

.updating {
color: var(--updating-color);
color: var(--progress-color);
}

.unset {
color: var(--unset-color);
color: var(--warn-color);
}

.github-icon {
Expand Down
Binary file added readme/webui-desktop.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added readme/webui-mobile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified readme/webui.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7e3fb78

Please sign in to comment.