Spaces:
Running
Running
Create style.css
Browse files- static/style.css +33 -0
static/style.css
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
background-color: #f8f9fa;
|
3 |
+
font-family: Arial, sans-serif;
|
4 |
+
}
|
5 |
+
|
6 |
+
h1 {
|
7 |
+
color: #343a40;
|
8 |
+
text-align: center;
|
9 |
+
}
|
10 |
+
|
11 |
+
.card {
|
12 |
+
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
13 |
+
}
|
14 |
+
|
15 |
+
.card-header {
|
16 |
+
background-color: #343a40;
|
17 |
+
color: white;
|
18 |
+
font-weight: bold;
|
19 |
+
}
|
20 |
+
|
21 |
+
.btn {
|
22 |
+
width: 100%;
|
23 |
+
}
|
24 |
+
|
25 |
+
textarea {
|
26 |
+
font-family: monospace;
|
27 |
+
}
|
28 |
+
|
29 |
+
.mt-2 {
|
30 |
+
font-size: 0.9em;
|
31 |
+
color: #555;
|
32 |
+
white-space: pre-wrap;
|
33 |
+
}
|