-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
zeroboss2006
committed
Feb 24, 2025
1 parent
34e7fc5
commit 9df865e
Showing
1 changed file
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |