| 
									
										
										
										
											2024-01-02 01:30:59 +01:00
										 |  |  | body {     | 
					
						
							| 
									
										
										
										
											2023-10-31 17:23:15 +01:00
										 |  |  |     margin: 0; | 
					
						
							| 
									
										
										
										
											2024-01-02 01:30:59 +01:00
										 |  |  |     overflow: hidden; | 
					
						
							| 
									
										
										
										
											2023-10-31 17:23:15 +01:00
										 |  |  |     display: flex; | 
					
						
							|  |  |  |     justify-content: center; | 
					
						
							|  |  |  |     align-items: center; | 
					
						
							| 
									
										
										
										
											2024-01-02 01:30:59 +01:00
										 |  |  |     height: 100vh; | 
					
						
							| 
									
										
										
										
											2023-10-31 17:23:15 +01:00
										 |  |  |     background-color: #000000; /* Change the background color as needed */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-02 01:06:30 +01:00
										 |  |  | #canvasContainer { | 
					
						
							|  |  |  |     aspect-ratio: 1 / 1; | 
					
						
							| 
									
										
										
										
											2024-01-08 00:22:24 +01:00
										 |  |  |     height: 100vh; | 
					
						
							| 
									
										
										
										
											2024-01-02 01:06:30 +01:00
										 |  |  |     position: relative; | 
					
						
							|  |  |  |     overflow: hidden; | 
					
						
							|  |  |  |     transition: width 0.5s ease; /* Smooth transition */ | 
					
						
							|  |  |  |     float: left; | 
					
						
							| 
									
										
										
										
											2024-01-02 01:30:59 +01:00
										 |  |  |     object-fit: contain; | 
					
						
							| 
									
										
										
										
											2024-01-02 01:06:30 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-31 17:23:15 +01:00
										 |  |  | canvas { | 
					
						
							|  |  |  |     width: 100%; | 
					
						
							|  |  |  |     height: 100%; | 
					
						
							| 
									
										
										
										
											2024-01-02 01:06:30 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #settingsHolder { | 
					
						
							|  |  |  |     visibility: hidden; | 
					
						
							|  |  |  |     position: absolute; | 
					
						
							|  |  |  |     top: inherit; | 
					
						
							|  |  |  |     left: inherit; | 
					
						
							|  |  |  |     width: inherit; | 
					
						
							|  |  |  |     height: 20%; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #settingsHolder:hover .settings { | 
					
						
							|  |  |  |     opacity: 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .settings { | 
					
						
							|  |  |  |     visibility: visible; | 
					
						
							|  |  |  |     opacity: 0; | 
					
						
							|  |  |  |     padding: 10px; | 
					
						
							|  |  |  |     background-color: rgba(25, 25, 25, 0.7); /* Semi-transparent white background */ | 
					
						
							|  |  |  |     transition: opacity 0.3s ease; /* Smooth transition */ | 
					
						
							| 
									
										
										
										
											2023-10-31 17:23:15 +01:00
										 |  |  | } |