46 lines
1018 B
CSS
46 lines
1018 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background: #f4f6f8;
|
|
color: #222;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
.container {
|
|
background: white;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 6px 18px rgba(0,0,0,0.08);
|
|
width: 420px;
|
|
text-align: center;
|
|
}
|
|
.status {
|
|
font-size: 1.6rem;
|
|
padding: 10px;
|
|
margin-bottom: 12px;
|
|
border-radius: 6px;
|
|
color: white;
|
|
}
|
|
.status.open { background: #28a745; }
|
|
.status.closed { background: #dc3545; }
|
|
.status.unknown { background: #6c757d; }
|
|
img#latest {
|
|
max-width: 100%;
|
|
border-radius: 6px;
|
|
margin-bottom: 12px;
|
|
background: #111;
|
|
height: auto;
|
|
}
|
|
.controls button {
|
|
margin: 6px;
|
|
padding: 8px 14px;
|
|
border: none;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
}
|
|
.controls button#start { background: #007bff; color: white; }
|
|
.controls button#stop { background: #ffc107; color: #222; }
|
|
pre#info { text-align: left; background: #f0f0f0; padding: 8px; border-radius: 6px; font-size: 12px; }
|