23 lines
394 B
CSS
23 lines
394 B
CSS
button {
|
|
border: 0;
|
|
background-color: var(--color-primary);
|
|
color: #fff;
|
|
cursor: pointer;
|
|
font-family: Montserrat;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
height: 40px;
|
|
outline: 0;
|
|
outline: none;
|
|
padding: 0.55rem 0.75rem;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
vertical-align: middle;
|
|
width: 100%;
|
|
}
|
|
|
|
button:disabled {
|
|
opacity: 0.8;
|
|
cursor: not-allowed;
|
|
}
|