<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.navbar.bg-softblue {
  background-color: #e7f1fc !important;
}
.timeline {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 2px solid #0d6efd;
  margin-bottom: 30px;
}

.timeline .event {
  margin-bottom: 1rem;
}

.timeline .event h6 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.progress-skill {
  margin-bottom: 1rem;
}
.skill-title {
  font-weight: 500;
}

.skill-section {
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  color: #333;
}

/* 顏色樣式（你可以微調） */
.bg-skill-pink {
  background-color: #fce4ec;
}
.bg-skill-green {
  background-color: #e6f4ea;
}
.bg-skill-purple {
  background-color: #ede7f6;
}
.bg-skill-blue {
  background-color: #e3f2fd;
}

/* 進度條顏色對應 */
.progress-bar-pink {
  background-color: #f06292;
}
.progress-bar-green {
  background-color: #4caf50;
}
.progress-bar-purple {
  background-color: #9575cd;
}
.progress-bar-blue {
  background-color: #42a5f5;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/bg.webp'); /* 你的背景圖路徑 */
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.8); /* 模糊+淡化 */
  opacity: 0.6;
  z-index: -1;
}

main.container {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}</pre></body></html>