Skip to content

Commit

Permalink
Create styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
hvmonteiro authored Apr 28, 2024
1 parent 343f1c2 commit 97fe5ee
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions assets/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

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

header h1 {
margin: 0;
}

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

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

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

.hero {
background-image: url('background.jpg');
background-size: cover;
color: #fff;
text-align: center;
padding: 100px 0;
}

.hero h2 {
font-size: 36px;
margin-bottom: 20px;
}

.hero p {
font-size: 18px;
margin-bottom: 40px;
}

.btn {
display: inline-block;
background-color: #ff6600;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
}

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

0 comments on commit 97fe5ee

Please sign in to comment.