45 lines
547 B
CSS
45 lines
547 B
CSS
body {
|
|
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
|
|
margin: 16px;
|
|
color: #111;
|
|
}
|
|
|
|
h1, h2 {
|
|
margin: 12px 0;
|
|
}
|
|
|
|
.hint {
|
|
color: #555;
|
|
margin: 6px 0 12px;
|
|
}
|
|
|
|
.toolbar {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|
|
th, td {
|
|
border: 1px solid #ddd;
|
|
padding: 6px 8px;
|
|
text-align: left;
|
|
font-size: 14px;
|
|
}
|
|
|
|
th {
|
|
background: #f6f6f6;
|
|
}
|
|
|
|
.status-running {
|
|
color: #0a7a0a;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.status-stopped {
|
|
color: #b00020;
|
|
font-weight: 600;
|
|
}
|