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.
 
 
 
0x40-web/css/style.css

74 lines
1.3 KiB

@font-face {
font-family: 'PetMe64Web';
font-style: normal;
font-weight: normal;
-webkit-font-smoothing: none;
font-smooth: never;
src: local("PetMe64Web");
src: local('Pet Me 64'), local('Pet Me 64'), url("PetMe64.woff") format('woff');
}
html, body {
height: 100%;
margin: 0; padding: 0;
overflow: hidden;
background-color:#ffffff;
}
#waifu {
display: block;
height: 100%;
padding: 0;
z-index: -10;
}
#preloadHelper {
background-color: #FFF;
width: 100%;
height: 100%;
display:flex;
justify-content:center;
align-items:center;
flex-direction: column;
font-family: 'PetMe64Web';
font-size: 25pt;
position: absolute;
top: 0;
left: 0;
z-index: 10;
}
#preloadHelper.loaded {
opacity: 0;
animation-name: fadeout;
animation-duration: 1s;
-webkit-animation-name: fadeout;
-webkit-animation-duration: 3s;
}
#preloader {
display: block;
text-align: center;
}
#preSub {
font-size: 12pt;
}
#huesSettings {
background: rgba(127,127,127,0.5);
border-color: rgba(0,0,0,0.5);
border-width: 4px;
border-style: solid;
}
@keyframes fadeout {
from {opacity: 1;}
to {opacity: 0;}
}
@-webkit-keyframes fadeout {
from {opacity: 1;}
to {opacity: 0;}
}