Files
wp-spaceapi-consumer/wp-spaceapi-consumer-style.css

35 lines
781 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.

/* door-status.css styles the indicator as a pillshaped button */
.door-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 */
.door-status-indicator.open {
background:#e7f9ec;
color:#1e7a34;
}
/* Closed = soft red background + dark red text */
.door-status-indicator.closed {
background:#fdeeee;
color:#c03c3c;
}
/* (Optional) slight hover effect */
.door-status-indicator:hover,
.door-status-indicator:focus {
filter:brightness(1.05);
outline:none;
}