table
by davidxmartins
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apimel Work Log</title>
<meta name="robots" content="noindex, nofollow">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
.container {
width: 95%;
max-width: 1500px;
margin: 20px auto;
padding: 20px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.header img {
max-height: 60px;
}
.header h1 {
margin: 0;
font-size: 24px;
}
.work-log-table {
width: 100%;
border-collapse: collapse;
}
.work-log-table th, .work-log-table td {
border: 2px solid #fff;
padding: 12px;
text-align: left;
}
.work-log-table th {
position: sticky;
top: 0;
color: #fff;
background-color: #bfbfbf; /* Darker background for headers */
z-index: 1;
}
/* Different shades for table headers */
.work-log-table th.col-1 { background-color: #a9a380 !important; }
.work-log-table th.col-2 { background-color: #97a392 !important; }
.work-log-table th.col-3 { background-color: #96a090 !important; }
.work-log-table th.col-4 { background-color: #adb9aa !important; }
.work-log-table th.col-5 { background-color: #bcbcbc !important; }
.work-log-table th.col-6 { background-color: #a1b0bc !important; }
.work-log-table tr:nth-child(odd) .col-1 { background-color: #FFF6E1; }
.work-log-table tr:nth-child(even) .col-1 { background-color: #FFECB3; }
.work-log-table tr:nth-child(odd) .col-2 {...