mirror of
				https://github.com/thomasjsn/hugo-theme-hello-friend.git
				synced 2025-11-04 00:38:48 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			485 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			485 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
.logo {
 | 
						|
  display: flex;
 | 
						|
  align-items: center;
 | 
						|
  text-decoration: none;
 | 
						|
  font-weight: bold;
 | 
						|
 | 
						|
  img {
 | 
						|
    height: 44px;
 | 
						|
  }
 | 
						|
 | 
						|
  &__mark {
 | 
						|
    margin-right: 5px;
 | 
						|
  }
 | 
						|
 | 
						|
  &__text {
 | 
						|
    font-size: 1.125rem;
 | 
						|
  }
 | 
						|
 | 
						|
  &__cursor {
 | 
						|
    display: inline-block;
 | 
						|
    width: 10px;
 | 
						|
    height: 1rem;
 | 
						|
    background: #fe5186;
 | 
						|
    margin-left: 5px;
 | 
						|
    border-radius: 1px;
 | 
						|
    animation: cursor 1s infinite;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
@keyframes cursor {
 | 
						|
  0% { opacity: 0; }
 | 
						|
  50% { opacity: 1; }
 | 
						|
  100% { opacity: 0; }
 | 
						|
}
 |