82 lines
		
	
	
		
			No EOL
		
	
	
		
			2 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			No EOL
		
	
	
		
			2 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
body {
 | 
						|
    font-family: 'Inter', sans-serif;
 | 
						|
    margin: 0;
 | 
						|
    padding: 0;
 | 
						|
    height: 100vh;
 | 
						|
    position: relative;
 | 
						|
    /* background-image: url('https://i.ytimg.com/vi/NQryvJ1qNZs/maxresdefault.jpg');
 | 
						|
    background-color: #333;
 | 
						|
    background-size: cover;
 | 
						|
    background-position: center;
 | 
						|
    background-repeat: no-repeat; */
 | 
						|
}
 | 
						|
 | 
						|
.game-screen {
 | 
						|
    width: 100%;
 | 
						|
    height: 100%;
 | 
						|
    position: relative;
 | 
						|
    /* background-color: rgba(0, 0, 0, 0.5);  */ 
 | 
						|
}
 | 
						|
 | 
						|
.help-text {
 | 
						|
    display: block;
 | 
						|
    opacity: 0;
 | 
						|
    transition: all ease-in-out 0.2s;
 | 
						|
    position: absolute;
 | 
						|
    top: 1%;
 | 
						|
    left: 10px;
 | 
						|
    background-color: rgba(18, 18, 18, 0.85);
 | 
						|
    border: 1px solid rgba(114, 76, 157, 0.1);
 | 
						|
    border-radius: 5px;
 | 
						|
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
 | 
						|
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.25), 0px 0px 1px rgba(255, 255, 255, 0.25);
 | 
						|
    padding: 10px 15px; 
 | 
						|
    color: #f1f1f1;
 | 
						|
    font-size: 14px;
 | 
						|
    font-weight: 600;
 | 
						|
    text-transform: uppercase;
 | 
						|
    letter-spacing: 0.5px;
 | 
						|
    z-index: 1000; 
 | 
						|
}
 | 
						|
 | 
						|
.text-ui {
 | 
						|
    display: flex;
 | 
						|
    opacity: 0;
 | 
						|
    align-items: center; 
 | 
						|
    justify-content: center; 
 | 
						|
    transition: all ease-in-out 0.2s;
 | 
						|
    color: white;
 | 
						|
    padding: 8px 10px;
 | 
						|
    background-color: rgba(18, 18, 18, 0.85);
 | 
						|
    border: 1px solid rgba(114, 76, 157, 0.1);
 | 
						|
    border-radius: 5px;
 | 
						|
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
 | 
						|
    text-transform: uppercase;
 | 
						|
    position: fixed;
 | 
						|
    top: 50%;
 | 
						|
    right: 15px;
 | 
						|
    transform: translateY(-50%);
 | 
						|
    z-index: 1000;
 | 
						|
    flex-direction: row;
 | 
						|
    text-align: center; 
 | 
						|
}
 | 
						|
 | 
						|
.text-ui button {
 | 
						|
    font-weight: 700;
 | 
						|
    margin-right: 6px;
 | 
						|
    padding: 6px 9px;
 | 
						|
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
 | 
						|
    border-radius: 4px;
 | 
						|
    border: none;
 | 
						|
    background: #6E6D70;
 | 
						|
    box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.1), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.5), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.12);
 | 
						|
    color: #DFDEDF;
 | 
						|
}
 | 
						|
 | 
						|
.text-ui p {
 | 
						|
    font-size: 14px;
 | 
						|
    font-weight: 600;
 | 
						|
    color: #DFDEDF;
 | 
						|
    margin: 0;
 | 
						|
    font-family: 'Inter', sans-serif;
 | 
						|
} |