File size: 518 Bytes
630a605 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
/* style.css */
/* Body font and background */
body {
font-family: 'Arial', sans-serif;
background-color: #f9f9f9;
color: #333333;
}
/* Headings */
h1, h2, h3, h4 {
color: #1f2937;
}
/* Text area */
textarea {
border-radius: 8px;
border: 1px solid #d1d5db;
padding: 10px;
}
/* Buttons */
button {
background-color: #2563eb;
color: white;
border-radius: 8px;
padding: 8px 15px;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #1d4ed8;
}
|