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