Skip to content

Commit

Permalink
初始化 Jekyll 網站結構和基本頁面
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroboss2006 committed Feb 24, 2025
1 parent 34e7fc5 commit 9df865e
Showing 1 changed file with 81 additions and 0 deletions.
81 changes: 81 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
/* Global styles */
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
line-height: 1.6;
}

/* Header styles */
.site-header {
background-color: #1a1a2e;
padding: 1rem 0;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.site-nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}

.site-title {
color: white;
text-decoration: none;
font-size: 1.5rem;
font-weight: bold;
}

.nav-links {
list-style: none;
display: flex;
gap: 2rem;
margin: 0;
padding: 0;
}

.nav-links a {
color: white;
text-decoration: none;
transition: color 0.3s;
}

.nav-links a:hover {
color: #ff5733;
}

/* Main content styles */
main {
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
}

/* Footer styles */
.site-footer {
background-color: #1a1a2e;
color: white;
padding: 2rem 0;
margin-top: 3rem;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
text-align: center;
}

.social-links a {
color: white;
text-decoration: none;
margin: 0 1rem;
transition: color 0.3s;
}

.social-links a:hover {
color: #ff5733;
}

0 comments on commit 9df865e

Please sign in to comment.