Skip to content

Commit

Permalink
Create convert-md-html-styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
MJ-AHMAD authored Jan 12, 2025
1 parent 44fbe01 commit 37b2aa4
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions convert-md-html-styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.container {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 80%;
max-width: 600px;
}

h1 {
text-align: center;
margin-bottom: 20px;
}

textarea {
width: 100%;
height: 150px;
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
}

button {
display: block;
width: 100%;
padding: 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
}

button:hover {
background-color: #0056b3;
}

#htmlOutput {
height: 150px;
background-color: #f9f9f9;
border: 1px solid #ccc;
border-radius: 4px;
padding: 10px;
font-size: 16px;
overflow-y: auto;
}

0 comments on commit 37b2aa4

Please sign in to comment.