>>>>>>>>>>>>>>>>>>>>> SERVIÇOS <<<<<<<<<<<<<<<<<<<<<<<<
HTML:
| SERVIÇO |
STATUS |
{{#each data}}
| {{Field}} |
{{#if (eq (lookup this "Last *") 0)}}
UP
{{else}}
DOWN
{{/if}}
|
{{/each}}
CSS:
.status-card {
background: #1E223C;
color: white;
border-radius: 16px;
padding: 14px;
font-size: 14.4px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}
.status-table {
width: 100%;
border-collapse: collapse;
}
.status-table thead tr {
border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.status-table th {
text-align: left;
font-weight: bold;
padding-bottom: 9px;
color: white;
background: #1E223C;
}
.status-table th:last-child {
text-align: right;
}
.status-table td {
padding: 9px 9px;
font-size: 14.4px;
vertical-align: middle;
border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.status-table td:last-child {
text-align: right;
}
.status {
display: inline-flex;
align-items: center;
justify-content: center;
height: 100%;
width: 54px;
color: black;
border-radius: 50px;
padding: 3.6px 30px;
font-weight: 800;
font-size: 14.4px;
}
.status.up {
background: #2ecc71;
}
.status.down {
background: #e74c3c;
}