Ogads custom css code

Hey what exactly are you looking for?
 
what do you want to custom? if it is complicated for you, you can hire a freelancer for this
 
I think you want to customize the theme by entering a specific css code. Try this css:

.app-btn {
border-radius: 10px !important;
background-color: #00B16A;
animation: pulse 1s infinite;
}
@keyframes pulse {
0%, 100% {
background-color: #00B16A;
}
50% {
background-color: #2ECC71;
}
}
 
I think you want to customize the theme by entering a specific css code. Try this css:

.app-btn {
border-radius: 10px !important;
background-color: #00B16A;
animation: pulse 1s infinite;
}
@keyframes pulse {
0%, 100% {
background-color: #00B16A;
}
50% {
background-color: #2ECC71;
}
}
Thanks bro
 
Back
Top