2025-01-27 20:32:34 +01:00
|
|
|
/* Basic styling for the body */
|
2025-01-27 20:29:15 +01:00
|
|
|
body {
|
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
|
margin: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-27 20:32:34 +01:00
|
|
|
/* Styling for the header */
|
2025-01-27 20:29:15 +01:00
|
|
|
h1 {
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-27 20:32:34 +01:00
|
|
|
/* Styling for the textarea input */
|
2025-01-27 20:29:15 +01:00
|
|
|
textarea {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-27 20:32:34 +01:00
|
|
|
/* Styling for the button */
|
2025-01-27 20:29:15 +01:00
|
|
|
button {
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
background-color: #007BFF;
|
|
|
|
|
color: white;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-27 20:32:34 +01:00
|
|
|
/* Styling for the button on hover */
|
2025-01-27 20:29:15 +01:00
|
|
|
button:hover {
|
|
|
|
|
background-color: #0056b3;
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-27 20:32:34 +01:00
|
|
|
/* Styling for the result div */
|
2025-01-27 20:29:15 +01:00
|
|
|
#result {
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-27 20:32:34 +01:00
|
|
|
/* Styling for each result paragraph */
|
2025-01-27 20:29:15 +01:00
|
|
|
#result p {
|
|
|
|
|
background-color: #f8f9fa;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin: 5px 0;
|
|
|
|
|
}
|