mirror of
				https://github.com/fooflington/selfdefined.git
				synced 2025-11-04 07:39:03 +00:00 
			
		
		
		
	
		
			
	
	
		
			36 lines
		
	
	
		
			623 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
		
		
			
		
	
	
			36 lines
		
	
	
		
			623 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| 
								 | 
							
								.hello-world {
							 | 
						||
| 
								 | 
							
								  margin: 200px 0;
							 | 
						||
| 
								 | 
							
								  font-size: 70px;
							 | 
						||
| 
								 | 
							
								  text-align: center;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								.hello-world__i {
							 | 
						||
| 
								 | 
							
								  display: inline-block;
							 | 
						||
| 
								 | 
							
								  -webkit-animation: rotate 4000ms infinite linear;
							 | 
						||
| 
								 | 
							
								          animation: rotate 4000ms infinite linear;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@keyframes rotate {
							 | 
						||
| 
								 | 
							
								  from {
							 | 
						||
| 
								 | 
							
								    -webkit-transform: rotate(0);
							 | 
						||
| 
								 | 
							
								            transform: rotate(0);
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  to {
							 | 
						||
| 
								 | 
							
								    -webkit-transform: rotate(360deg);
							 | 
						||
| 
								 | 
							
								            transform: rotate(360deg);
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@-webkit-keyframes rotate {
							 | 
						||
| 
								 | 
							
								  from {
							 | 
						||
| 
								 | 
							
								    -webkit-transform: rotate(0);
							 | 
						||
| 
								 | 
							
								            transform: rotate(0);
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  to {
							 | 
						||
| 
								 | 
							
								    -webkit-transform: rotate(360deg);
							 | 
						||
| 
								 | 
							
								            transform: rotate(360deg);
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								}
							 |