a { position: relative; color: #000; text-decoration: none; } a::after { content: ''; position: absolute; width: 100%; height: 2px; bottom: 0; left: 0; background-color: #000; visibility: hidden; transform: scaleX(0); transform-origin: left; transition: all 0.3s ease-in-out; } a:hover::after { visibility: visible; transform: scaleX(1); }

Table of Contents

Introduction
Tutorial
Version History
Download and Installation
Support
Integration Services
Code Gallery
Licensing

Git Hub
Source Code
Issue Tracking

Community
Classes & Schedule

body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; } header { background-color: #4CAF50; color: white; padding: 1em 0; text-align: center; } main { padding: 2em; } /* Popup overlay */ .overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); display: none; justify-content: center; align-items: center; z-index: 1000; } /* Popup container */ .popup-content { background-color: #fff; border-radius: 5px; width: 80%; max-width: 600px; max-height: 80%; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); z-index: 1001; position: relative; display: flex; flex-direction: column; } /* Popup header */ .popup-header { display: flex; justify-content: space-between; align-items: center; background-color: #f1f1f1; padding: 10px 10px; border-bottom: 1px solid #ccc; border-radius: 5px 5px 0 0; position: sticky; top: 0; z-index: 10; } /* Close button */ .close-btn { font-size: 18px; font-weight: bold; cursor: pointer; } /* Terms content */ .terms-content { padding: 20px; overflow-y: auto; flex-grow: 1; font-size: 16px; } /* Style for the button that opens the popup */ .open-popup-btn { font-size: 16px; cursor: pointer; } .version { background-color: white; margin: 1em 0; padding: 1em; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .version h2 { color: #4CAF50; margin-top: 0; } footer { text-align: center; padding: 1em 0; background-color: #4CAF50; color: white; position: fixed; width: 100%; bottom: 0; }

document.addEventListener('DOMContentLoaded', function () { const openTermsPopupBtn = document.getElementById('openTermsPopupBtn'); const termsPopup = document.getElementById('termsPopup'); const closeTermsPopupBtn = document.getElementById('closeTermsPopupBtn'); openTermsPopupBtn.addEventListener('click', function () { termsPopup.style.display = 'flex'; }); closeTermsPopupBtn.addEventListener('click', function () { termsPopup.style.display = 'none'; }); termsPopup.addEventListener('click', function (event) { if (event.target === termsPopup) { termsPopup.style.display = 'none'; } }); });
Download 64 bit Version of CASE v.1.0 BETA