Where people come together to learn, code, and play. Custom-built HTTP server, site generator, and website from scratch using no external libraries. Goal is to be as minimalistic and fun as possible. http://projectdivar.com
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.
 
 
 
SigPlace/out/sig.css

46 lines
1005 B

.generateTime{
font-size:10px;
color:blue;
}
.codeForeground{
font-family:'Courier New', Courier, monospace;
position:absolute;
z-index:-4999;
color:rgba(0,0,0,0);
background: linear-gradient(90deg, rgba(17,17,17,1) 0%, rgba(17,17,17,1) 42%, rgba(17,17,17,0.6825105042016807) 44%, rgba(17,17,17,1) 46%, rgba(17,17,17,1) 100%);
background-size:300% 100%;
user-select:none;
animation-name:backgroundMove;
animation-duration:15s;
animation-iteration-count: infinite;
font-size:32px;
overflow:hidden;
max-width:98vw;
max-height:90vh;
}
.codeBackground{
font-family:'Courier New', Courier, monospace;
position:absolute;
color:#44FF44;
z-index:-5000;
user-select:none;
font-size:32px;
overflow:hidden;
max-width:98vw;
max-height:90vh;
}
@keyframes backgroundMove{
0%{
background-position: 0% 50%;
}
100%{
background-position: 100% 50%;
}
}
body{
background-color:#111;
}