Skip to content

Commit

Permalink
Create main.css
Browse files Browse the repository at this point in the history
  • Loading branch information
cozmo14047 authored May 10, 2024
1 parent bcfe129 commit 6b3e01c
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}

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

nav ul li {
display: inline;
margin-right: 20px;
}

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

section {
padding: 50px;
}

footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}

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

footer ul li {
margin-bottom: 10px;
}

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

footer ul li a:hover {
text-decoration: underline;
}

0 comments on commit 6b3e01c

Please sign in to comment.