Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Macro html
sourceTypeMacroBody
attachmentPageId
syntaxHTML
attachmentId
url
<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>

<div class="custom-user-manuals">
  <h1>Equiem User Manuals</h1>
  <ul>
    <li>Setting Up Developer Account (Google Play / Apple)</li>
    <li>Equiem One Home: Overview for Property Managers</li>
    <li>User Management in Equiem One</li>
    <li>Company Management in Equiem One</li>
    <li>Content Management System (Iris)</li>
    <!-- Repeat the above <li> element for each item, alternating background colors as desired -->
    <li>Settings</li>
    <li>Analytics Dashboard</li>
    <li>Event & Registration Management</li>
    <li>Store Management</li>
    <li>Bookings in Equiem One</li>
    <li>Visitor Management User Manual</li>
    <li>Request Management</li>
  </ul>
</div>