About.css 656 Bytes
Newer Older
fisherdaddy's avatar
fisherdaddy committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
.about-section {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-section h1,
  .about-section h2 {
    color: #333;
  }
  
  .about-section p {
    line-height: 1.6;
    color: #555;
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #6366F1; /* 与现有主题颜色一致 */
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }
  
  .social-link i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
  }
  
  .social-link:hover {
    color: #4F46E5; /* 悬停时颜色加深 */
  }