mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
46 lines
No EOL
819 B
CSS
46 lines
No EOL
819 B
CSS
.Button {
|
|
font-family: var(--font-regular);
|
|
|
|
border-width: 0;
|
|
border-radius: 25px;
|
|
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
|
|
|
|
padding: 5px;
|
|
margin: 0 2px;
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
.Button:focus-visible {
|
|
outline: 4px solid var(--outline);
|
|
}
|
|
|
|
.ButtonGreen {
|
|
color: var(--fg-green);
|
|
background-color: var(--bg-green);
|
|
border-color: var(--bg-green);
|
|
}
|
|
|
|
.ButtonGrey {
|
|
color: var(--fg-grey);
|
|
background-color: var(--bg-grey);
|
|
border-color: var(--bg-grey);
|
|
}
|
|
|
|
.ButtonYellow {
|
|
color: var(--fg-yellow);
|
|
background-color: var(--bg-yellow);
|
|
border-color: var(--bg-yellow);
|
|
}
|
|
|
|
.ButtonRed {
|
|
color: var(--fg-red);
|
|
background-color: var(--bg-red);
|
|
border-color: var(--bg-red);
|
|
}
|
|
|
|
.Icon {
|
|
font-size: large;
|
|
line-height: 0;
|
|
vertical-align: sub;
|
|
} |