rekby_obsidian-video-notes/styles.css
2026-04-12 18:35:26 +03:00

40 lines
559 B
CSS

.vn-view {
display: flex;
flex-direction: column;
gap: 8px;
padding: 8px;
height: 100%;
}
.vn-video {
width: 100%;
max-height: 60%;
background: var(--background-primary);
border-radius: 4px;
}
.vn-toolbar {
display: flex;
flex-wrap: wrap;
gap: 4px;
}
.vn-toolbar button {
flex: 1 1 auto;
min-width: 64px;
padding: 4px 8px;
cursor: pointer;
}
.vn-status {
font-family: var(--font-monospace);
font-size: 12px;
color: var(--text-muted);
}
.vn-empty {
color: var(--text-muted);
font-style: italic;
padding: 16px;
text-align: center;
}