52 lines
938 B
CSS
52 lines
938 B
CSS
/* ===== HEADER BAR ===== */
|
|
.header-bar {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto 1fr;
|
|
align-items: center;
|
|
margin-bottom: 15px;
|
|
gap: 16px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 22px;
|
|
margin: 0;
|
|
}
|
|
|
|
.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 ===== */
|
|
.cam-btn {
|
|
padding: 8px 16px;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
color: #00ff88;
|
|
border: 1px solid #00ff88;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
font-family: monospace;
|
|
font-size: 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
white-space: nowrap;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.cam-btn:hover {
|
|
background: rgba(0, 255, 136, 0.2);
|
|
}
|
|
|
|
.cam-btn-icon {
|
|
font-size: 16px;
|
|
} |