18 lines
314 B
CSS
18 lines
314 B
CSS
button {
|
|
text-decoration: none;
|
|
font-family: "Source Sans 3";
|
|
font-size: 20pt;
|
|
font-weight: 900;
|
|
text-align: center;
|
|
|
|
border: none;
|
|
border-radius: 30px;
|
|
padding: 8px 52px 8px 52px;
|
|
transition-duration: 0.2s;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
button.gray{
|
|
background-color: #222222;
|
|
}
|
|
|