Spaces:
No application file
No application file
Update static/styles.css
Browse files- static/styles.css +26 -13
static/styles.css
CHANGED
|
@@ -1,28 +1,41 @@
|
|
| 1 |
body {
|
| 2 |
font-family: Arial, sans-serif;
|
| 3 |
-
background
|
|
|
|
| 4 |
color: #333;
|
| 5 |
-
padding: 40px;
|
| 6 |
}
|
| 7 |
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
}
|
| 16 |
|
| 17 |
button {
|
| 18 |
-
|
|
|
|
|
|
|
| 19 |
color: white;
|
| 20 |
-
padding: 10px 20px;
|
| 21 |
border: none;
|
| 22 |
border-radius: 5px;
|
| 23 |
cursor: pointer;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
| 28 |
}
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
font-family: Arial, sans-serif;
|
| 3 |
+
background: #f0f4f8;
|
| 4 |
+
padding: 20px;
|
| 5 |
color: #333;
|
|
|
|
| 6 |
}
|
| 7 |
|
| 8 |
+
h1 {
|
| 9 |
+
color: #004080;
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
label {
|
| 13 |
+
display: block;
|
| 14 |
+
margin-top: 10px;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
input, textarea {
|
| 18 |
+
width: 100%;
|
| 19 |
+
padding: 8px;
|
| 20 |
+
margin-top: 5px;
|
| 21 |
+
border-radius: 5px;
|
| 22 |
+
border: 1px solid #ccc;
|
| 23 |
}
|
| 24 |
|
| 25 |
button {
|
| 26 |
+
margin-top: 15px;
|
| 27 |
+
padding: 10px 15px;
|
| 28 |
+
background-color: #0070cc;
|
| 29 |
color: white;
|
|
|
|
| 30 |
border: none;
|
| 31 |
border-radius: 5px;
|
| 32 |
cursor: pointer;
|
| 33 |
}
|
| 34 |
|
| 35 |
+
a {
|
| 36 |
+
display: inline-block;
|
| 37 |
+
margin-top: 10px;
|
| 38 |
+
color: #0070cc;
|
| 39 |
+
text-decoration: none;
|
| 40 |
}
|
| 41 |
+
|