better review design, caddy now listens on localhost too

This commit is contained in:
2026-05-14 20:54:13 +02:00
parent 05541e60b5
commit c25e8b5c0a
10 changed files with 137 additions and 111 deletions
+30
View File
@@ -56,4 +56,34 @@ h4 {
margin-top: 150px;
width: 100%;
height: fit-content;
}
.custom-button {
font-size: 1rem;
font-weight: bold;
height: 40px;
padding: 10px 20px;
background: var(--surface);
color: rgb(0, 0, 0);
cursor: pointer;
border-radius: 20px;
border: 2px solid var(--surface);
user-select: none;
display: flex;
align-items: center;
}
.custom-button:hover {
border-color: white;
color: white;
}
.custom-button.inactive {
opacity: 0.3;
cursor: default;
color: black;
}
.custom-button.inactive:hover {
border-color: var(--surface);
}