34 lines
754 B
CSS
34 lines
754 B
CSS
/*
|
|
Colors taken from:
|
|
https://tailwindcss.com/docs/customizing-colors#default-color-palette
|
|
*/
|
|
|
|
.button-finish {
|
|
transition: background-color linear 300ms;
|
|
background-color: #059669;
|
|
color: white;
|
|
border-left: none;
|
|
}
|
|
|
|
.button-finish:hover, .button-finish:focus, .button-finish:active {
|
|
background-color: #10b981;
|
|
color: white;
|
|
}
|
|
|
|
.button-reset {
|
|
transition: background-color linear 300ms;
|
|
background-color: #2563eb;
|
|
color: white;
|
|
}
|
|
|
|
.button-reset:hover, .button-reset:focus, .button-reset:active {
|
|
background-color: #3b82f6;
|
|
color: white;
|
|
}
|
|
|
|
#page-success header .icon {
|
|
display: inline-block;
|
|
border-radius: 100px;
|
|
padding: 15px;
|
|
margin-bottom: 2rem;
|
|
} |