mirror of
https://github.com/stagehacks/Cue-View.git
synced 2026-08-04 21:37:46 +00:00
208 lines
3.4 KiB
CSS
208 lines
3.4 KiB
CSS
h3 {
|
|
color: #6d6d6d !important;
|
|
margin: 0;
|
|
font-size: medium;
|
|
}
|
|
|
|
.me-label {
|
|
margin-top: 0;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.atem-input {
|
|
width: 35px;
|
|
height: 35px;
|
|
border: 2px solid;
|
|
border-color: #bcbcbc;
|
|
border-radius: 3px;
|
|
margin: 6px;
|
|
|
|
background: rgb(250, 250, 249);
|
|
background: radial-gradient(
|
|
circle,
|
|
rgba(250, 250, 249, 1) 0%,
|
|
rgba(249, 249, 249, 1) 54%,
|
|
rgba(203, 203, 203, 1) 66%,
|
|
rgba(234, 235, 235, 1) 78%,
|
|
rgba(209, 212, 212, 1) 86%,
|
|
rgba(224, 224, 224, 1) 90%,
|
|
rgba(255, 255, 255, 1) 100%
|
|
);
|
|
}
|
|
|
|
.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, 104, 108);
|
|
background: radial-gradient(
|
|
circle,
|
|
rgba(255, 104, 108, 1) 0%,
|
|
rgba(235, 11, 40, 1) 55%,
|
|
rgba(255, 41, 68, 1) 69%,
|
|
rgba(249, 24, 50, 1) 75%,
|
|
rgba(232, 0, 26, 1) 79%,
|
|
rgba(255, 43, 58, 1) 100%
|
|
);
|
|
box-shadow: 0px 0px 10px 1px rgb(255, 128, 132);
|
|
}
|
|
|
|
.atem-green {
|
|
background: rgb(78, 255, 73);
|
|
background: radial-gradient(
|
|
circle,
|
|
rgba(78, 255, 73, 1) 0%,
|
|
rgba(42, 198, 34, 1) 55%,
|
|
rgba(35, 217, 24, 1) 69%,
|
|
rgba(22, 199, 17, 1) 75%,
|
|
rgba(13, 208, 0, 1) 79%,
|
|
rgba(29, 204, 14, 1) 100%
|
|
);
|
|
box-shadow: 0px 0px 10px 1px rgb(14, 238, 7);
|
|
}
|
|
|
|
.atem-yellow {
|
|
background: rgb(249, 255, 3);
|
|
background: radial-gradient(
|
|
circle,
|
|
rgba(249, 255, 3, 1) 0%,
|
|
rgba(253, 214, 14, 1) 55%,
|
|
rgba(255, 174, 0, 1) 69%,
|
|
rgba(253, 181, 0, 1) 75%,
|
|
rgba(249, 197, 7, 1) 79%,
|
|
rgba(250, 169, 9, 1) 100%
|
|
);
|
|
box-shadow: 0px 0px 10px 1px rgb(249, 255, 3);
|
|
}
|
|
|
|
.atem-gray {
|
|
color: rgb(150, 150, 150);
|
|
}
|
|
|
|
.source-label {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.transition-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
.rate-heading {
|
|
text-align: center;
|
|
font-size: small;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.dsk-rate,
|
|
.ftb-rate,
|
|
.transition-rate {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.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 {
|
|
background: transparent;
|
|
border-color: transparent;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.hide {
|
|
display: none;
|
|
}
|
|
|
|
.no-wrap {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.show-small {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (min-width: 0px) and (max-width: 480px) {
|
|
.hide-small {
|
|
display: none;
|
|
}
|
|
.show-small {
|
|
display: block;
|
|
}
|
|
}
|