96 lines
1.4 KiB
CSS
96 lines
1.4 KiB
CSS
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #f0f2f5;
|
|
margin: 0;
|
|
padding: 20px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: #333;
|
|
}
|
|
|
|
.status-bar {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
background-color: #fff;
|
|
padding: 15px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.status-item {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 20px;
|
|
}
|
|
|
|
.card {
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.live-value {
|
|
margin-bottom: 10px;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.string-item {
|
|
margin-bottom: 5px;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.string-item label {
|
|
font-weight: bold;
|
|
}
|
|
|
|
#db101-container, #db900-container {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.bar-container {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 4px;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.bar-label {
|
|
width: 50px;
|
|
}
|
|
|
|
.bar-track {
|
|
flex-grow: 1;
|
|
height: 15px;
|
|
background-color: #eee;
|
|
position: relative;
|
|
margin: 0 10px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
.bar-fill {
|
|
height: 100%;
|
|
background-color: #4caf50;
|
|
}
|
|
|
|
.db-item {
|
|
font-family: monospace;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.db-item span {
|
|
color: #007bff;
|
|
}
|