Spaces:
Running
Running
Create style.css
Browse files- static/style.css +32 -0
static/style.css
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: Arial;
|
| 3 |
+
background: #f5f5f5;
|
| 4 |
+
padding: 20px;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
.container {
|
| 8 |
+
max-width: 800px;
|
| 9 |
+
margin: auto;
|
| 10 |
+
background: white;
|
| 11 |
+
padding: 20px;
|
| 12 |
+
border-radius: 10px;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
textarea {
|
| 16 |
+
width: 100%;
|
| 17 |
+
height: 150px;
|
| 18 |
+
margin-bottom: 10px;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
select, button {
|
| 22 |
+
padding: 10px;
|
| 23 |
+
margin-top: 10px;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
pre {
|
| 27 |
+
background: #111;
|
| 28 |
+
color: #0f0;
|
| 29 |
+
padding: 10px;
|
| 30 |
+
margin-top: 20px;
|
| 31 |
+
overflow-x: auto;
|
| 32 |
+
}
|