93 lines
1.4 KiB
CSS
93 lines
1.4 KiB
CSS
body {
|
|
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #f9f9fb;
|
|
margin: 0;
|
|
padding: 2rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
table {
|
|
width: 90%;
|
|
max-width: 1000px;
|
|
border-collapse: collapse;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
background-color: #fff;
|
|
}
|
|
|
|
th, td {
|
|
padding: 1rem;
|
|
text-align: left;
|
|
vertical-align: top;
|
|
}
|
|
|
|
th {
|
|
background-color: #f0f4f8;
|
|
color: #444;
|
|
font-size: 1rem;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: #f9fafc;
|
|
}
|
|
|
|
tr:hover {
|
|
background-color: #eef3f8;
|
|
}
|
|
|
|
td a {
|
|
color: #1a73e8;
|
|
text-decoration: none;
|
|
}
|
|
|
|
td a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.stato {
|
|
font-weight: bold;
|
|
padding: 0.4em 0.6em;
|
|
border-radius: 6px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.bloccato {
|
|
background-color: #ffe5e5;
|
|
color: #c0392b;
|
|
}
|
|
|
|
.parziale {
|
|
background-color: #fff4cc;
|
|
color: #d35400;
|
|
}
|
|
|
|
.sbloccato {
|
|
background-color: #dfffe0;
|
|
color: #27ae60;
|
|
}
|
|
|
|
.unknown {
|
|
background-color: #e9e9e9;
|
|
color: #888888;
|
|
}
|
|
|
|
.note {
|
|
font-size: 0.95em;
|
|
color: #555;
|
|
font-style: italic;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
table, th, td {
|
|
font-size: 0.9rem;
|
|
}
|
|
} |