Compare commits

..

No commits in common. "9e7466f96718756d99c65671df4e2c1a8aba218d" and "a3d0cc95f94dddfca57177c4ea00becc13e62328" have entirely different histories.

2 changed files with 1 additions and 12 deletions

View File

@ -229,8 +229,7 @@ export default {
wasTooDark: false, // previous average was too dark
// Configuration thresholds: how dark is too dark? (0-255)
// NOTE: 0=disable the feature.
threshold: 0, // 10,
threshold: 10,
},
},

View File

@ -206,9 +206,6 @@ video {
width: 40%;
height: 40%;
opacity: 0.02;
animation-name: subtle-pulsate;
animation-duration: 10s;
animation-iteration-count: infinite;
}
.corner-watermark {
position: absolute;
@ -222,11 +219,4 @@ video {
.invert-color {
filter: invert(100%);
}
/* Animate the primary watermark to pulsate in opacity */
@keyframes subtle-pulsate {
0% { opacity: 0.02; }
50% { opacity: 0.04; }
100% { opacity: 0.02; }
}
</style>