Skip to content

Commit

Permalink
Update styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
starlox0 authored Jun 6, 2024
1 parent f5585d1 commit 90d01c8
Showing 1 changed file with 25 additions and 14 deletions.
39 changes: 25 additions & 14 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,41 +1,52 @@
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

header {
background-color: #333;
color: white;
padding: 1em;
background: #333;
color: #fff;
padding: 1rem 0;
text-align: center;
}

nav ul {
list-style-type: none;
list-style: none;
padding: 0;
}

nav ul li {
display: inline;
margin-right: 1em;
margin: 0 15px;
}

nav ul li a {
color: white;
color: #fff;
text-decoration: none;
}

main {
padding: 2em;
section {
padding: 2rem;
margin: 2rem 0;
background: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section h2 {
margin-top: 0;
}

.project {
margin-bottom: 1rem;
}

footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em;
position: absolute;
bottom: 0;
width: 100%;
padding: 1rem 0;
background: #333;
color: #fff;
}

0 comments on commit 90d01c8

Please sign in to comment.