Delete html directory

This commit is contained in:
Pickle
2022-10-30 15:08:16 -04:00
committed by GitHub
parent 0d51980b1b
commit a207b56fb4
5 changed files with 0 additions and 276 deletions

View File

@@ -1,93 +0,0 @@
@font-face {
font-family: 'BodyCam';
src: url('VCR_OSD_MONO_1.001.ttf') format('truetype') /* Safari, Android, iOS */
}
* {
font-family: BodyCam;
color:white;
}
#twitch-embed {
position: absolute;
width: 100%;
height: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
overflow: hidden;
z-index: -1;
}
#overlay {
position: absolute;
top: 10px;
right: 10px;
z-index: 1;
font-size: 48pt !important;
}
#background {
display: flex;
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
background-color: rgb(42, 42, 42);
justify-content: center;
align-items: center;
flex-wrap: wrap;
z-index: -2;
}
#tv-container {
display: flex;
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
background-color: transparent;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
#tv-container.notify {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
}
#tv-container > div {
font-size: 24pt;
user-select: none;
}
#tv-container > div.notify {
font-size: 24pt;
user-select: none;
width: -webkit-fill-available;
text-align: center;
padding: 25px;
background-color: rgba(0, 0, 0, 0.3);
}
/* width */
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: rgb(42, 42, 42);
}
/* Handle */
::-webkit-scrollbar-thumb {
background: rgb(66, 66, 66);
}