Spaces:
Paused
Paused
File size: 1,231 Bytes
8d1819a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
/* Button Styles */
.button {
background: var(--color-panel);
font-weight: 500;
padding: 0.5rem 1.5rem;
border-radius: 0.25rem;
cursor: pointer;
border: 1px solid var(--color-border);
color: var(--color-text);
font-size: 0.875rem;
font-family: "Rubik", Arial, Helvetica, sans-serif;
transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
min-height: 2em; /* Standard height */
display: inline-flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
.button.confirm {
background: var(--color-highlight);
color: #fff;
}
.button.cancel {
background: var(--color-panel);
color: var(--color-accent);
/* border: 1px solid var(--color-accent); */
}
.button:hover {
transform: scale(1.05);
filter: brightness(1.05);
}
.button.cancel:hover {
background: var(--color-panel);
border-color: var(--color-accent);
color: var(--color-accent);
}
.buttons-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.buttons-left {
display: flex;
justify-content: flex-start;
gap: 0.5em;
}
.buttons-right {
display: flex;
justify-content: flex-end;
gap: 0.5em;
}
.icon-button {
padding-left: 0.75rem;
padding-right: 0.75rem;
}
|