47 lines
		
	
	
		
			690 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			690 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
body {
 | 
						|
  margin: 0;
 | 
						|
  background-color: #000;
 | 
						|
  color: #fff;
 | 
						|
  font-family: Monospace;
 | 
						|
  font-size: 13px;
 | 
						|
  line-height: 24px;
 | 
						|
  overscroll-behavior: none;
 | 
						|
  cursor: pointer;
 | 
						|
}
 | 
						|
 | 
						|
#container {
 | 
						|
  position: absolute;
 | 
						|
  z-index: 0;
 | 
						|
}
 | 
						|
 | 
						|
@keyframes escaped{
 | 
						|
  0% {
 | 
						|
    opacity: 0%;
 | 
						|
    background: transparent;
 | 
						|
    height: 10vh;
 | 
						|
    padding-top: 90vh; 
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
#message {
 | 
						|
  display: none;
 | 
						|
}
 | 
						|
 | 
						|
#message.escaped {
 | 
						|
  display: flex;
 | 
						|
  position: absolute;
 | 
						|
  left: 0;
 | 
						|
  width: 100%;
 | 
						|
  height: 100vh;
 | 
						|
  font-size: 10vh;
 | 
						|
  font-family: Georgia, serif;
 | 
						|
  color: gray;
 | 
						|
  justify-content: center;
 | 
						|
  animation: escaped 5s;
 | 
						|
  height: 60vh;
 | 
						|
  padding-top: 40vh;
 | 
						|
  opacity: 100%;
 | 
						|
  cursor: default;
 | 
						|
  z-index: 1;
 | 
						|
}
 |