87 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
@media (min-width: 1024px) {
 | 
						|
    .card-grid .layout {
 | 
						|
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
.alert .shiki {
 | 
						|
    --shiki-dark: #00000000 !important;
 | 
						|
    --shiki-default: #00000000 !important;
 | 
						|
    --shiki-dark-bg: #00000000 !important;
 | 
						|
    --shiki-default-bg: #00000000 !important;
 | 
						|
}
 | 
						|
.dark .shiki {
 | 
						|
    background-color: #00000000 !important;
 | 
						|
}
 | 
						|
*html .dark .shiki span, html.dark .shiki span  {
 | 
						|
    background-color: var(--prose-code-block-backgroundColor) !important;
 | 
						|
    }
 | 
						|
    
 | 
						|
/*html .dark .shiki span, html.dark .shiki span  {
 | 
						|
        background-color: #00000000 !important;
 | 
						|
        }*/
 | 
						|
 | 
						|
.alert.success .prose-code, .alert.success .shiki span  {
 | 
						|
    background-color: var(--elements-state-success-backgroundColor-secondary) !important;
 | 
						|
    border-color: #00361f !important;
 | 
						|
}
 | 
						|
 | 
						|
.alert.info .prose-code, .alert.info .shiki span {
 | 
						|
    background-color: var(--elements-state-info-backgroundColor-secondary) !important;
 | 
						|
    border-color: #00304a !important;
 | 
						|
}
 | 
						|
 | 
						|
.alert.warning .prose-code, .alert.warning .shiki span {
 | 
						|
    background-color: var(--elements-state-warning-backgroundColor-secondary) !important;
 | 
						|
    border-color: #382d00 !important;
 | 
						|
}
 | 
						|
 | 
						|
.alert.danger .prose-code, .alert.danger .shiki span {
 | 
						|
    background-color: var(--elements-danger-info-backgroundColor-secondary) !important;
 | 
						|
    border-color: #00304a !important;
 | 
						|
}
 | 
						|
 | 
						|
.section.right > :nth-child(2) {
 | 
						|
    display:none;
 | 
						|
  }
 | 
						|
 | 
						|
.container {
 | 
						|
    max-width: var(--elements-container-maxWidth);
 | 
						|
}
 | 
						|
 | 
						|
.has-parent-icon .icon {
 | 
						|
    color: #ADA9A4;
 | 
						|
}
 | 
						|
 | 
						|
.has-parent-icon.active .icon {
 | 
						|
    color: var(--color-primary-500) !important;
 | 
						|
}
 | 
						|
 | 
						|
.card:hover{
 | 
						|
    color:#00304a;
 | 
						|
}
 | 
						|
 | 
						|
p img {
 | 
						|
    border-radius:7px;
 | 
						|
}
 | 
						|
@media (min-width: 1024px) {
 | 
						|
    .card-grid {
 | 
						|
        padding-bottom: 80px !important;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
.prose-code.highlight-sh code .line {
 | 
						|
    padding-inline-start: 0 !important;
 | 
						|
}
 | 
						|
 | 
						|
.prose-code.highlight-sh code .line:before {
 | 
						|
    display:none !important;
 | 
						|
}
 | 
						|
 | 
						|
.prose-code.highlight-bash code .line {
 | 
						|
    padding-inline-start: 0 !important;
 | 
						|
}
 | 
						|
 | 
						|
.prose-code.highlight-bash code .line:before {
 | 
						|
    display:none !important;
 | 
						|
} |