<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 背景色 */
body {
	background-color:#e7e7e7;
}

/* 引用の左端部分の色を消す */
.quote {
	border-left: none !important;
	background-color: #e0e0e0 !important;
	padding-left: 0px !important;
	
}

/* 画像に軽い影をつける */
.line img.image {
     box-shadow: 5px 5px 5px rgba(0,0,0,0.4);
 }
  html[data-project-theme="paper-dark-dark"],
  html[data-project-theme="defaut-dark"] {
    --code-line-number-color: #D181FF; 
  }
  
  .section-title, .code-block-start {
    counter-reset: codeline
  }
  .code-block .indent-mark &gt; span.char-index:last-child {
    counter-increment: codeline 
  }
  
  body:not(.presentation) .code-block .indent-mark &gt; span.char-index:last-child::before {
    content: counter(codeline); 
    position: absolute;
  }
  .code-block .indent-mark &gt; span.char-index:last-child::before {
    color: var(--code-line-number-color, #3f3f3f);
  }
  /* カーソル選択時の行番号の色 */
  .cursor-line .code-block .indent-mark &gt; span.char-index:last-child::before {
    color: var(--cursor-code-line-number-color, #FF00F0); 
    font-weight: bolder;
  }
  
  .indent {
  	margin-left: 2.5em !important;
  }
  
  
.line .dot {
	display: none !important;
}</pre></body></html>