56 lines
922 B
CSS
56 lines
922 B
CSS
.btn-green {
|
|
background-color: #49bf3c;
|
|
color: #fff;
|
|
border-radius: 50px;
|
|
padding: 10px 30px;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-green-outline {
|
|
border-color: #49bf3c;
|
|
background-color: transparent;
|
|
color: unset;
|
|
}
|
|
|
|
.btn-green-outline:hover {
|
|
background-color: #49bf3c;
|
|
color: #fff;
|
|
}
|
|
|
|
.btn-square-small {
|
|
border-radius: 3px;
|
|
padding-bottom: 5.072px;
|
|
padding-inline-end: 12px;
|
|
padding-inline-start: 12px;
|
|
padding-left: 12px;
|
|
padding-right: 12px;
|
|
padding-top: 5.072px;
|
|
}
|
|
|
|
.btn-green:hover {
|
|
background-color: #00a85a;
|
|
color: #fff;
|
|
}
|
|
|
|
.text-blue {
|
|
color: #696cff !important;
|
|
}
|
|
.text-green {
|
|
color: #49bf3c !important;
|
|
}
|
|
|
|
.btn-outline-green {
|
|
border-radius: 50px;
|
|
padding: 10px 30px;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-outline-green:hover {
|
|
background-color: #49bf3c;
|
|
color: #fff;
|
|
}
|