mirror of
https://github.com/stagehacks/Cue-View.git
synced 2026-08-05 13:57:47 +00:00
146 lines
2.2 KiB
CSS
146 lines
2.2 KiB
CSS
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;
|
|
width: fit-content;
|
|
}
|
|
|
|
.atem-red {
|
|
background: rgb(255, 130, 131);
|
|
background: radial-gradient(circle, rgba(255, 130, 131, 1) 0%, rgba(255, 41, 40, 1) 100%);
|
|
}
|
|
|
|
.atem-green {
|
|
background: rgb(14, 238, 7);
|
|
background: radial-gradient(circle, rgba(14, 238, 7, 1) 0%, rgba(29, 204, 14, 1) 100%);
|
|
}
|
|
|
|
.atem-yellow {
|
|
background: rgb(255, 240, 0);
|
|
background: radial-gradient(circle, rgba(255, 240, 0, 1) 0%, rgba(250, 169, 9, 1) 100%);
|
|
}
|
|
|
|
.atem-gray {
|
|
color: rgb(150, 150, 150);
|
|
}
|
|
|
|
.source-label {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
}
|
|
|
|
.transition-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.transition-settings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.tbar-container {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
background-color: #1f1f1f;
|
|
border: 4px solid;
|
|
border-color: #1a1a1a;
|
|
border-radius: 6px;
|
|
width: 20px;
|
|
height: auto;
|
|
}
|
|
|
|
.tbar-div {
|
|
width: 100%;
|
|
background-color: limegreen;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.dsk {
|
|
width: 100%;
|
|
}
|
|
|
|
.dsk .source-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-content: center;
|
|
width: 100%;
|
|
padding: 5px;
|
|
}
|
|
|
|
.dsk h3 {
|
|
text-align: center;
|
|
}
|
|
|
|
.fade-to-black-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.fade-to-black .source-wrapper {
|
|
display: flex;
|
|
width: 100%;
|
|
padding: 5px;
|
|
}
|
|
|
|
.fade-to-black h3 {
|
|
text-align: center;
|
|
}
|
|
|
|
.dsk-rate,
|
|
.ftb-rate,
|
|
.transition-rate {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.ftb-rate,
|
|
.transition-rate {
|
|
width: 50px;
|
|
}
|
|
|
|
.dsk-rate-label,
|
|
.ftb-rate-label,
|
|
.transition-rate-label {
|
|
color: rgb(235, 110, 0);
|
|
background-color: black;
|
|
border-radius: 3px;
|
|
padding: 2px;
|
|
text-align: center;
|
|
}
|
|
|
|
.clear {
|
|
border-color: transparent;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.hide {
|
|
display: none;
|
|
}
|
|
|
|
.no-wrap {
|
|
flex-wrap: nowrap;
|
|
}
|