Spaces:
Running
Running
Commit
·
44a09f5
1
Parent(s):
2784678
Create style.css
Browse files- templates/style.css +30 -0
templates/style.css
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: Arial, sans-serif;
|
3 |
+
text-align: center;
|
4 |
+
}
|
5 |
+
|
6 |
+
form {
|
7 |
+
display: inline-block;
|
8 |
+
text-align: left;
|
9 |
+
margin-top: 50px;
|
10 |
+
}
|
11 |
+
|
12 |
+
textarea {
|
13 |
+
width: 500px;
|
14 |
+
height: 200px;
|
15 |
+
margin-top: 10px;
|
16 |
+
margin-bottom: 20px;
|
17 |
+
}
|
18 |
+
|
19 |
+
input[type="submit"] {
|
20 |
+
margin-top: 20px;
|
21 |
+
}
|
22 |
+
|
23 |
+
button {
|
24 |
+
padding: 10px 20px;
|
25 |
+
background-color: blue;
|
26 |
+
color: white;
|
27 |
+
border: none;
|
28 |
+
border-radius: 5px;
|
29 |
+
cursor: pointer;
|
30 |
+
}
|