2025-01-19 21:55:05 +04:00
|
|
|
<h3 align="center">Cute Kuma</h3>
|
|
|
|
|
|
|
|
|
|
<p align="center">
|
|
|
|
|
Cute CSS for <a href="https://github.com/louislam/uptime-kuma">Uptime Kuma</a> status page with a simple and modern look
|
|
|
|
|
<br>
|
2025-02-03 12:14:03 +04:00
|
|
|
<a href="https://kuma.denisromanov.ru"><strong>Live demo »</strong></a>
|
2025-01-19 21:55:05 +04:00
|
|
|
<br>
|
|
|
|
|
<br>
|
|
|
|
|
<a href="https://github.com/dermv/cute-kuma/tree/main#features">Features</a>
|
|
|
|
|
·
|
2025-03-01 20:36:48 +04:00
|
|
|
<a href="https://github.com/dermv/cute-kuma/tree/main#install">Install</a>
|
2025-01-19 21:55:05 +04:00
|
|
|
·
|
|
|
|
|
<a href="https://github.com/dermv/cute-kuma/tree/main#personalization">Personalization</a>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
<picture>
|
|
|
|
|
<source media="(prefers-color-scheme: dark)" srcset="./.github/assets/dark.png">
|
|
|
|
|
<source media="(prefers-color-scheme: light)" srcset="./.github/assets/light.png">
|
2025-01-20 21:54:19 +04:00
|
|
|
<img alt="Cute Kuma" src="./.github/assets/dark.png">
|
2025-01-19 21:55:05 +04:00
|
|
|
</picture>
|
|
|
|
|
</p>
|
|
|
|
|
|
2025-03-01 20:36:48 +04:00
|
|
|
## Features
|
2025-01-19 21:55:05 +04:00
|
|
|
|
2025-03-01 20:36:48 +04:00
|
|
|
- Modern design: Inspired by top monitoring services
|
|
|
|
|
- Light and dark themes
|
|
|
|
|
- No refresh timer: Removed by default (optional restoration)
|
|
|
|
|
- Clean code: Easy to customize and extend
|
2025-01-19 21:55:05 +04:00
|
|
|
|
2025-03-01 20:36:48 +04:00
|
|
|
## Install
|
2025-01-19 21:55:05 +04:00
|
|
|
|
|
|
|
|
1. In your Uptime Kuma dashboard, navigate to status page.
|
|
|
|
|
2. Click `Edit Status Page`.
|
|
|
|
|
3. Scroll down to `Custom CSS`.
|
|
|
|
|
4. Copy the contents of `main.css` and paste it into the Custom CSS field.
|
|
|
|
|
5. Click `Save` at the bottom.
|
|
|
|
|
|
2025-03-01 20:36:48 +04:00
|
|
|
## Personalization
|
2025-01-19 21:55:05 +04:00
|
|
|
|
|
|
|
|
You can modify the values inside `:root {}` to fit your needs.
|
|
|
|
|
|
|
|
|
|
By default, the refresh timer is removed. To restore it, simply comment `display: none;` in `.refresh-info` as shown here:
|
|
|
|
|
```
|
|
|
|
|
.refresh-info {
|
|
|
|
|
/* display: none; */
|
|
|
|
|
opacity: 1 !important;
|
|
|
|
|
color: var(--secondary-color);
|
|
|
|
|
}
|
|
|
|
|
```
|