mirror of
				https://github.com/welpo/tabi.git
				synced 2025-11-04 01:50:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
	
		
			648 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
	
		
			648 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
figure {
 | 
						|
    box-sizing: border-box;
 | 
						|
    display: inline-block;
 | 
						|
    margin: 0;
 | 
						|
    max-width: 100%;
 | 
						|
    height: auto;
 | 
						|
}
 | 
						|
 | 
						|
figcaption {
 | 
						|
    font-family: var(--serif-font);
 | 
						|
    font-size: 0.72rem;
 | 
						|
    color: var(--meta-color);
 | 
						|
    text-align: center;
 | 
						|
}
 | 
						|
 | 
						|
figure img {
 | 
						|
    max-height: 500px;
 | 
						|
}
 | 
						|
 | 
						|
img {
 | 
						|
    display: block;
 | 
						|
    margin: 0 auto;
 | 
						|
    max-width: 100%;
 | 
						|
    height: auto;
 | 
						|
}
 | 
						|
 | 
						|
figure h4 {
 | 
						|
    font-size: 1rem;
 | 
						|
    margin: 0;
 | 
						|
    margin-bottom: 1em;
 | 
						|
}
 | 
						|
 | 
						|
figure h4::before {
 | 
						|
    content: "↳ ";
 | 
						|
}
 | 
						|
 | 
						|
.img-dark {
 | 
						|
    display: none;
 | 
						|
}
 | 
						|
 | 
						|
[data-theme="dark"] {
 | 
						|
    .img-dark {
 | 
						|
        display: block;
 | 
						|
    }
 | 
						|
 | 
						|
    .img-light {
 | 
						|
        display: none;
 | 
						|
    }
 | 
						|
}
 |