| Server IP : 173.209.174.21 / Your IP : 216.73.216.89 Web Server : Apache/2.4.58 (Ubuntu) System : Linux wcfs-server 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : nodor ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/wcsd/School-alert/css/ |
Upload File : |
/* Center the dashboard content */
.dashboard-columns {
display: flex;
justify-content: center; /* Center the columns horizontally */
gap: 20px; /* Adjust the gap between the columns */
margin-top: 20px;
}
/* Column styles */
.column {
flex: 1;
padding: 20px; /* Add more padding inside columns */
box-sizing: border-box;
min-width: 300px; /* Minimum width for each column */
max-width: 550px; /* Increase the width of the columns */
border-radius: 8px;
}
/* Logo Column */
.logo-column {
flex: 0 0 150px; /* Fixed width for the logo column */
display: flex;
justify-content: center;
align-items: flex-start;
height: 100%;
}
/* Active Alerts Column */
.active-alerts {
background-color: #e0f0ff; /* Light blue background for active alerts */
border: 1px solid #cce0ff;
}
.active-alerts h3 {
color: #0044cc;
}
/* Old Alerts Column */
.old-alerts {
background-color: #f4f4f9; /* Light gray background for old events */
border: 1px solid #ccc;
}
.old-alerts h3 {
color: #666;
}
/* Logo Styles */
.logo {
max-height: 100px;
max-width: 100%;
object-fit: contain;
}
/* Additional Styling for Alerts */
.alert {
padding: 15px;
border-radius: 5px;
margin-bottom: 15px;
background-color: #ffffff;
border: 1px solid #cce0ff;
}
.alert h4 {
color: #0044cc;
font-size: 1.1em;
margin-bottom: 5px;
}