доработка текущего времени raspberry на экране

This commit is contained in:
Maxim
2026-06-16 13:22:17 +03:00
parent 875aa8a054
commit bc40c1437a
7 changed files with 35 additions and 6 deletions

View File

@@ -12,9 +12,9 @@ body {
/* ===== HEADER BAR ===== */
.header-bar {
display: flex;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
justify-content: space-between;
margin-bottom: 15px;
gap: 16px;
}
@@ -22,7 +22,20 @@ body {
h1 {
font-size: 22px;
margin: 0;
flex: 1;
}
.header-time {
font-size: 16px;
text-align: center;
white-space: nowrap;
padding: 6px 12px;
border: 1px solid rgba(0, 255, 136, 0.35);
border-radius: 8px;
background: rgba(0, 255, 136, 0.05);
}
.header-bar .cam-btn {
justify-self: end;
}
/* ===== CAMERA BUTTON (теперь в header) ===== */