CoolFace
Apppublic

eaglelandsonce/TensorFlowJSClass

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
styles.css64 linesDownload Raw Back to root
1body {2  font-family: helvetica, arial, sans-serif;3  margin: 2em;4  color: #3D3D3D;5}6 7h1 {8  font-style: italic;9  color: #FF6F00;10}11 12video {13  display: block;14  position: absolute;15  top: 0;16  left: 0;17  width: 100%;18  height: 100%;19}20 21section {22  opacity: 1;23  transition: opacity 500ms ease-in-out;24}25 26.removed {27  display: none;28}29 30.invisible {31  opacity: 0.2;32}33 34.camView {35  position: relative;36  float: left;37  width: calc(100% - 20px);38  margin: 10px;39  cursor: pointer;40}41 42.camView p {43  position: absolute;44  padding: 5px;45  background-color: rgba(255, 111, 0, 0.85);46  color: #FFF;47  border: 1px dashed rgba(255, 255, 255, 0.7);48  z-index: 2;49  font-size: 12px;50}51 52.highlighter {53  background: rgba(0, 255, 0, 0.25);54  border: 1px dashed #fff;55  z-index: 1;56  position: absolute;57}58 59#liveView {60  position: relative;61  width: 640px; /* Ensure this matches the video size */62  height: 480px; /* Ensure this matches the video size */63}64