Update style.css
Browse files
style.css
CHANGED
|
@@ -1,7 +1,8 @@
|
|
| 1 |
body {
|
| 2 |
margin: 0;
|
| 3 |
-
padding: 0;
|
| 4 |
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
|
|
|
| 5 |
}
|
| 6 |
|
| 7 |
h1 {
|
|
@@ -22,6 +23,7 @@ p {
|
|
| 22 |
padding: 16px;
|
| 23 |
border: 1px solid lightgray;
|
| 24 |
border-radius: 16px;
|
|
|
|
| 25 |
}
|
| 26 |
|
| 27 |
.card p:last-child {
|
|
@@ -32,5 +34,35 @@ p {
|
|
| 32 |
width: 100%;
|
| 33 |
max-width: 1920px;
|
| 34 |
height: auto;
|
| 35 |
-
aspect-ratio: 16 / 9;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
}
|
|
|
|
| 1 |
body {
|
| 2 |
margin: 0;
|
| 3 |
+
padding: 0;
|
| 4 |
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
| 5 |
+
background: transparent; /* Ensure transparency for OBS */
|
| 6 |
}
|
| 7 |
|
| 8 |
h1 {
|
|
|
|
| 23 |
padding: 16px;
|
| 24 |
border: 1px solid lightgray;
|
| 25 |
border-radius: 16px;
|
| 26 |
+
background: white; /* Ensure card is visible if preview is enabled */
|
| 27 |
}
|
| 28 |
|
| 29 |
.card p:last-child {
|
|
|
|
| 34 |
width: 100%;
|
| 35 |
max-width: 1920px;
|
| 36 |
height: auto;
|
| 37 |
+
aspect-ratio: 16 / 9;
|
| 38 |
+
display: block;
|
| 39 |
+
margin: 0 auto;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
input[type="range"] {
|
| 43 |
+
width: 100%;
|
| 44 |
+
margin: 10px 0;
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
label {
|
| 48 |
+
font-size: 14px;
|
| 49 |
+
margin-right: 10px;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
button {
|
| 53 |
+
padding: 8px 16px;
|
| 54 |
+
background: #007bff;
|
| 55 |
+
color: white;
|
| 56 |
+
border: none;
|
| 57 |
+
border-radius: 4px;
|
| 58 |
+
cursor: pointer;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
+
button:hover {
|
| 62 |
+
background: #0056b3;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
input[type="radio"],
|
| 66 |
+
input[type="checkbox"] {
|
| 67 |
+
margin-right: 5px;
|
| 68 |
}
|