cahier-de-bridge
Version:
Gestion d'un éditeur de mains de bridge
25 lines (21 loc) • 399 B
CSS
#status {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
min-height: 32px;
font-weight: bold;
border: grey 5px inset;
background-color: lightgray;
width: 100%;
}
#status.error {
background-color: red;
color: antiquewhite;
}
#status.ok {
background-color: lightgreen;
}
#status.warning {
background-color: lightsalmon;
}