Skip to content

Commit

Permalink
Create style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
defitricks authored Oct 19, 2024
1 parent 8f9f641 commit 5b825db
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
body {
background-color: black;
font-family: 'Courier New', Courier, monospace;
color: white;
text-align: center;
padding: 0;
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}

.container {
max-width: 600px;
padding: 20px;
}

h1 {
font-size: 2.5em;
margin-bottom: 20px;
}

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

ul li {
margin: 10px 0;
}

button {
background-color: #333;
color: white;
border: 1px solid white;
padding: 10px 20px;
cursor: pointer;
font-size: 1em;
transition: background-color 0.3s;
}

button:hover {
background-color: #555;
}

0 comments on commit 5b825db

Please sign in to comment.