Create static/style.css
Browse files- static/style.css +25 -0
static/style.css
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: Arial, sans-serif;
|
3 |
+
margin: 20px;
|
4 |
+
background-color: #f0f0f0;
|
5 |
+
}
|
6 |
+
h1, h2 {
|
7 |
+
color: #333;
|
8 |
+
}
|
9 |
+
form {
|
10 |
+
margin-bottom: 20px;
|
11 |
+
}
|
12 |
+
label {
|
13 |
+
display: inline-block;
|
14 |
+
width: 120px;
|
15 |
+
}
|
16 |
+
input {
|
17 |
+
margin: 5px 0;
|
18 |
+
}
|
19 |
+
canvas {
|
20 |
+
border: 1px solid #000;
|
21 |
+
background-color: #fff;
|
22 |
+
}
|
23 |
+
#decision {
|
24 |
+
font-weight: bold;
|
25 |
+
}
|