You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
405 B
20 lines
405 B
3 years ago
|
.btn {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
gap: 1em;
|
||
|
border-radius: 10px;
|
||
|
padding: 0.3em 2em;
|
||
|
font-size: 1em;
|
||
|
box-shadow: var(--box-shadow);
|
||
|
background-color: var(--theme-color);
|
||
|
color: white;
|
||
|
transition-duration: 0.1s;
|
||
|
font-weight: bold;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.btn:hover {
|
||
|
transform: scale(0.95);
|
||
|
transition-duration: 0.1s;
|
||
|
}
|