Calculator Tools Calculator Tools
Create

Risk Management Calculator 2

Oct 25, 2023

About this app

A fun and colorful risk management calculator.

Related apps

Put this on your site

Source

                    <style>
body {
font-family: 'Roboto', sans-serif;
background: #070c29;
color: white;
}

#main-container {
padding-top: 30px;
}

th {
text-align: left;
}

tr:hover {
background-color: #ffa500;
cursor: pointer;
animation: bounce 0.3s infinite alternate;
}

tr:active {
background-color: rgba(255, 165, 0, 0.4);
}

@keyframes bounce {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-5px);
}
}
</style>