Files
tauri-video03/frontend/styles.css
2026-04-02 16:51:28 +02:00

89 lines
1.2 KiB
CSS

:root {
color-scheme: dark;
font-family: Arial, Helvetica, sans-serif;
}
body {
margin: 0;
background: #111827;
color: #f9fafb;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 24px;
}
.card {
background: #1f2937;
border: 1px solid #374151;
border-radius: 12px;
padding: 20px;
margin-bottom: 20px;
}
.actions {
display: flex;
gap: 12px;
margin-bottom: 16px;
flex-wrap: wrap;
}
button {
border: 0;
border-radius: 8px;
padding: 10px 16px;
cursor: pointer;
font-size: 16px;
}
button:disabled {
opacity: 0.6;
cursor: default;
}
input[type="text"] {
border: 1px solid #374151;
border-radius: 8px;
padding: 10px 12px;
background: #0b1220;
color: #f9fafb;
min-width: 220px;
}
.preview-wrap {
width: 100%;
aspect-ratio: 16/9;
min-height: 240px;
background: #0b1220;
border: 1px solid #374151;
border-radius: 8px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.preview-wrap img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
pre {
background: #0b1220;
border: 1px solid #374151;
border-radius: 8px;
padding: 12px;
white-space: pre-wrap;
}
.chat-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-bottom: 16px;
}