Skip to content

Commit

Permalink
Create style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
cheaderthecoder authored Aug 19, 2024
1 parent 3405835 commit d91038f
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 {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #333;
color: #fff;
}
#converter {
text-align: center;
background-color: #444;
padding: 20px;
border-radius: 8px;
width: 60%;
max-width: 600px;
margin: auto;
}
#input, #output {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 4px;
border: 1px solid #ddd;
min-height: 100px;
background-color: #fff;
color: #000;
}
button {
padding: 10px 20px;
border: none;
border-radius: 4px;
background-color: #007BFF;
color: #fff;
cursor: pointer;
margin: 5px;
}
button:hover {
background-color: #0056b3;
}
select {
margin-bottom: 20px;
}

0 comments on commit d91038f

Please sign in to comment.