Looking for some help with implementing the Upcoming Events part from this code snippet: https://codepen.io/AbhijithHebbarK/pen/boKWKE
.events-details-list{
opacity:0;
transition: all 0.3s ease-in-out;
position: absolute;
left: 0;
right: 0;
top: 0;
width: 100%;
z-index:99;
list-style-type: none;
padding:15px 0px;
background: #22303E;
}
.events-details-list li{
padding: 0px;
margin: 5px 15px;
height: auto;
text-align: center;
color: #fff;
}
.events-details-list li,.events-details-list li:hover{
color: #fff;
font-size:15px;
text-decoration: none;
}
Having trouble using it on my mobile phone - hover effects are not working and the font stays red. Any CSS tips to make it work smoothly on mobile devices would be greatly appreciated.
Thank you!