mirror of
				https://github.com/Redocly/redoc.git
				synced 2025-11-04 17:57:30 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			802 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			802 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
@import '../../shared/styles/variables';
 | 
						|
 | 
						|
header {
 | 
						|
    font-family: $headers-font;
 | 
						|
    font-size: $h5;
 | 
						|
    text-transform: uppercase;
 | 
						|
    margin: 0;
 | 
						|
    color: $sample-panel-headers-color;
 | 
						|
    text-transform: uppercase;
 | 
						|
    font-weight: normal;
 | 
						|
}
 | 
						|
 | 
						|
:host > tabs > ul li {
 | 
						|
    font-family: $headers-font;
 | 
						|
    font-size: .9em;
 | 
						|
    border-radius: $border-radius;
 | 
						|
    margin: 2px 0;
 | 
						|
    padding: 3px 10px 2px 10px;
 | 
						|
    line-height: 1.25;
 | 
						|
    color: $sample-panel-headers-color;
 | 
						|
 | 
						|
    &:hover {
 | 
						|
        background-color: rgba(white, .1);
 | 
						|
        color: #ffffff;
 | 
						|
    }
 | 
						|
 | 
						|
    &.active {
 | 
						|
        background-color: #ffffff;
 | 
						|
        color: $text-color;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
:host tabs ul {
 | 
						|
    padding-top: 10px;
 | 
						|
}
 | 
						|
 | 
						|
pre {
 | 
						|
    overflow-x: auto;
 | 
						|
    word-break: break-all;
 | 
						|
    word-wrap: break-word;
 | 
						|
    white-space: pre-wrap;
 | 
						|
}
 |