Hi Paul, I think you've misunderstood something.
I'm looking for some custom CSS used in the new Nexio template. The "services-list" class. I can't find it because the CSS isn't in the add-ons, page CSS, or custom CSS. It's probably somewhere in the template CSS. I've tried it myself, but I keep messing with the padding. See image. The question was whether you guys could simply place the custom CSS used in the template somewhere in the templates where you can explore it clearly. Now I've done this myself, but as you can see, the padding is wrong; the blur doesn't start at the corners of the add-on.
https://ibb.co/rG0ySWNR
I used this own class in the addon: service-card
.service-card{
position:relative;
overflow:hidden;
padding:40px 30px 40px 30px;
background:#fff;
}
/* blur blob */
.service-card::before{
content:"";
position:absolute;
width:200px;
height:200px;
top:40px;
right:30px;
background:radial-gradient(circle,#6c63ff,#00d4ff);
border-radius:50%;
filter:blur(80px);
opacity:0;
transition:.4s ease;
}
.service-card:hover::before{
opacity:.6;
}