Create static/style.css
Browse files- static/style.css +32 -0
static/style.css
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: sans-serif;
|
| 3 |
+
background: #fafafa;
|
| 4 |
+
padding: 20px;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
textarea {
|
| 8 |
+
font-family: monospace;
|
| 9 |
+
width: 100%;
|
| 10 |
+
border-radius: 8px;
|
| 11 |
+
padding: 10px;
|
| 12 |
+
border: 1px solid #ccc;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
button {
|
| 16 |
+
padding: 8px 14px;
|
| 17 |
+
background-color: #4CAF50;
|
| 18 |
+
color: white;
|
| 19 |
+
border: none;
|
| 20 |
+
border-radius: 6px;
|
| 21 |
+
cursor: pointer;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
button:hover {
|
| 25 |
+
background-color: #45a049;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
pre {
|
| 29 |
+
background: #eee;
|
| 30 |
+
padding: 10px;
|
| 31 |
+
border-radius: 6px;
|
| 32 |
+
}
|