<style>
.custom-user-manuals {
font-family: 'Arial', sans-serif;
line-height: 1.6;
}
.custom-user-manuals h1 {
color: #6240E8;
border-bottom: 2px solid #6240E8;
padding-bottom: 10px;
}
.custom-user-manuals ul {
list-style-type: none;
padding: 0;
}
.custom-user-manuals li {
border-left: 5px solid #6240E8;
margin-bottom: 10px;
padding: 10px;
background-color: #F2FBF9;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.custom-user-manuals li:hover {
background-color: #E1F6F2;
}
.custom-user-manuals li:nth-child(odd) {
background-color: #D6F2ED;
}
.custom-user-manuals li:nth-child(even) {
background-color: #CBEFE8;
}
</style>
|