Text-translator / stles.css
Noveramaaz's picture
Create stles.css
11235c6 verified
raw
history blame contribute delete
594 Bytes
body {
font-family: Arial, sans-serif;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
.input-container, .output-container {
margin-bottom: 10px;
}
label {
font-weight: bold;
}
textarea {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 5px;
resize: vertical;
}
button {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}