Files
wp-spaceapi-consumer/wp-spaceapi-consumer-style.css
Joao Figueiredo 42345c47b9 major refactor, numenculature change
remove mentions to "door" status, to space
2025-06-02 00:17:55 +01:00

35 lines
787 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* space-status.css styles the indicator as a pillshaped button */
.space-status-indicator {
display:inline-flex;
align-items:center;
gap:0.4em;
padding:0.25em 0.75em;
border-radius:1em; /* fullyrounded corners */
font-size:0.95em;
font-weight:600;
line-height:1;
border:1px solid transparent;
user-select:none;
transition:filter .15s ease-in-out;
}
/* Open = soft green background + dark green text */
.space-status-indicator.open {
background:#e7f9ec;
color:#1e7a34;
}
/* Closed = soft red background + dark red text */
.space-status-indicator.closed {
background:#fdeeee;
color:#c03c3c;
}
/* (Optional) slight hover effect */
.space-status-indicator:hover,
.space-status-indicator:focus {
filter:brightness(1.05);
outline:none;
}