plugin / style.css
TDN-M's picture
Update style.css
0981e2a verified
raw
history blame
1.11 kB
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
background: transparent; /* Ensure transparency for OBS */
}
h1 {
font-size: 16px;
margin-top: 0;
}
p {
color: rgb(107, 114, 128);
font-size: 15px;
margin-bottom: 10px;
margin-top: 5px;
}
.card {
max-width: 620px;
margin: 0 auto;
padding: 16px;
border: 1px solid lightgray;
border-radius: 16px;
background: white; /* Ensure card is visible if preview is enabled */
}
.card p:last-child {
margin-bottom: 0;
}
#videoPreview, #canvasOutput {
width: 100%;
max-width: 1920px;
height: auto;
aspect-ratio: 16 / 9;
display: block;
margin: 0 auto;
}
input[type="range"] {
width: 100%;
margin: 10px 0;
}
label {
font-size: 14px;
margin-right: 10px;
}
button {
padding: 8px 16px;
background: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background: #0056b3;
}
input[type="radio"],
input[type="checkbox"] {
margin-right: 5px;
}