Skip to content

Commit

Permalink
Create style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
lapid92 authored Aug 7, 2024
1 parent a244e58 commit ab0c93c
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}

header {
background-color: #4CAF50;
color: white;
padding: 20px;
width: 100%;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

main {
padding: 20px;
background-color: white;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button {
padding: 10px 20px;
margin-top: 20px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}

button:hover {
background-color: #45a049;
}

0 comments on commit ab0c93c

Please sign in to comment.