OBS widget that implements a countdown timer overlay for "Starting Soon..." style displays.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

80 lines
1.5 KiB

@font-face {
font-family: 'Escape Velocity';
src: url('/fonts/escapevelocity.ttf');
}
@font-face {
font-family: 'Retrolight';
src: url('/fonts/retrolight.ttf');
}
@font-face {
font-family: 'Platinum Sign';
src: url('/fonts/platinum-sign-over.ttf');
}
@font-face {
font-family: 'Digital Desolation Plus';
src: url('/fonts/digital-desolation-plus.otf');
}
html, body {
margin: 0;
padding: 0;
background: transparent;
}
.interface {
display: flex;
flex-direction: column;
justify-content: center;
position: fixed;
top: 0; right: 0; bottom: 0; left: 0;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background: transparent;
color: #e8e8e8;
}
.interface small {
font-size: 0.6em;
}
.container {
display: block;
position: relative;
margin: 0 auto;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #000000;
}
.container .metadata {
display: flex;
justify-content: space-between;
font-family: "Escape Velocity";
font-size: 36px;
font-weight: bold;
line-height: 1;
text-align: center;
}
.container .prompt {
font-family: "Digital Desolation Plus";
font-size: 100px;
line-height: 1;
}
.container .time-line {
display: flex;
justify-content: space-between;
}
.container .time-display {
font-family: 'Courier New', Courier, monospace;
font-size: 48px;
line-height: 1;
}
.container .countdown-display {
font-family: 'Courier New', Courier, monospace;
font-size: 48px;
line-height: 1;
}