/* 文章列表使用 */

/* 語法高亮樣式 (解決 hightlight問題)*/
body.quarto-dark .listing-description code {
  color: #9d32fa;
  background-color: #f8f8f2;
}


h5.quarto-listing-category-title {
color: transparent!important;
 position: relative;
}


/* 加入 tag 描述 */ h5.quarto-listing-category-title::after { 
  content: "標籤/tags"; /* 要顯示的新文字 */ 
  color:rgb(225, 225, 225); /*指定新文字的顏色*/ 
   background-color: rgb(56, 96, 155); 
   font-size: 1rem; /* 正常大小 */ 
   font-weight: bold; 
   position: absolute; 
  padding: 0.2em 0.5em;
  border-radius: 4px;
   left: 0; 
   top: 0; 
}

