Hi, I am learning about CSS and trying to implement in Ignition.
.psc-button_test {
display: inline-block;
padding: 15px 25px;
font-size: 24px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #4CAF50;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
}
.psc-button_test:hover {
background-color: #3e8e41;
}
.psc-button_test:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
Above code I had written in Advanced Stylesheet and I am not able to find this Stylesheet in Style --> Classes.
How I can implement this ?