basic atem connection/display working

This commit is contained in:
2023-01-26 00:48:06 -06:00
parent 61e6d24e0f
commit 6f0e528164
8 changed files with 2263 additions and 2428 deletions
+39
View File
@@ -0,0 +1,39 @@
h3 {
color: #6d6d6d;
}
.atem-input {
width: 50px;
height: 50px;
background: white;
border: 4px solid;
border-color: #8c8c8c;
border-radius: 3px;
margin: 6px;
}
.source-wrapper {
display: flex;
flex-wrap: wrap;
background-color: #1f1f1f;
border: 1px solid;
border-color: #1a1a1a;
border-radius: 5px;
}
.program-active {
background: rgb(255, 130, 131);
background: radial-gradient(circle, rgba(255, 130, 131, 1) 0%, rgba(255, 41, 40, 1) 100%);
}
.preview-active {
background: rgb(14, 238, 7);
background: radial-gradient(circle, rgba(14, 238, 7, 1) 0%, rgba(29, 204, 14, 1) 100%);
}
.source-label {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}