You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
763 B
50 lines
763 B
content {
|
|
display: flex;
|
|
flex: flex-shrink;
|
|
flex-grow: 1;
|
|
justify-content: center;
|
|
}
|
|
|
|
panel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: 1px solid #eee;
|
|
width: min-content;
|
|
}
|
|
|
|
panel top {
|
|
width: 480px; /* sets a header for display */
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
panel middle {
|
|
padding-left: 0.5rem;
|
|
padding-right: 0.5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
panel bottom {
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
panel bottom button {
|
|
display: flex;
|
|
margin: 0;
|
|
border-radius: unset;
|
|
width: 100%;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
button:hover {
|
|
filter: invert(20%);
|
|
}
|
|
|
|
button#cancel {
|
|
background: unset;
|
|
color: var(--color-text);
|
|
}
|
|
|